summaryrefslogtreecommitdiff
path: root/include/d/d_msg_string.h
diff options
context:
space:
mode:
authorTakaRikka <38417346+TakaRikka@users.noreply.github.com>2024-10-10 07:29:58 -0700
committerGitHub <noreply@github.com>2024-10-10 08:29:58 -0600
commit12eb254d769d84743b5cc6cd5424057c57eaf0ad (patch)
tree4509be332b2ccfc6fe939f47740d68f7746eca3e /include/d/d_msg_string.h
parent2fd702c0ac170a789af879b8b92a82d4dcc9080c (diff)
switch to dtk setup (#2203)
* switch to dtk setup * some cleanup / fixes * cleanup d_a_alink literals * Restore doxygen, update CI & README.md (#1) * Fix build image ref (#2) --------- Co-authored-by: Luke Street <luke@street.dev>
Diffstat (limited to 'include/d/d_msg_string.h')
-rw-r--r--include/d/d_msg_string.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/include/d/d_msg_string.h b/include/d/d_msg_string.h
new file mode 100644
index 0000000000..ffbce2c3f2
--- /dev/null
+++ b/include/d/d_msg_string.h
@@ -0,0 +1,31 @@
+#ifndef D_MSG_D_MSG_STRING_H
+#define D_MSG_D_MSG_STRING_H
+
+#include "d/d_msg_string_base.h"
+
+class COutFont_c;
+class JUTFont;
+
+class dMsgString_c : public dMsgStringBase_c {
+public:
+ /* 80249C20 */ dMsgString_c();
+ /* 80249CA0 */ dMsgString_c(u8);
+ /* 80249D28 */ ~dMsgString_c();
+
+ /* 80191B6C */ virtual f32 getString(u32, J2DTextBox*, J2DTextBox*, JUTFont*, COutFont_c*, u8);
+ /* 801E1D10 */ virtual void getStringPage(u32, u8, u8, J2DTextBox*, J2DTextBox*, JUTFont*, COutFont_c*,
+ u8);
+ /* 80249DB4 */ virtual void resetStringLocal(J2DTextBox*);
+ /* 80249DE4 */ virtual void drawOutFontLocal(J2DTextBox*, f32);
+ /* 80249ED0 */ virtual void drawFontLocal(J2DTextBox*, u8, f32, f32, f32, f32, u32, u8);
+
+ void drawOutFont(J2DTextBox* param_0, f32 param_1) {
+ drawOutFontLocal(param_0, param_1);
+ }
+
+private:
+ /* 0x24 */ COutFont_c* mpOutFont;
+ /* 0x28 */ u8 field_0x28;
+};
+
+#endif /* D_MSG_D_MSG_STRING_H */