diff options
Diffstat (limited to 'include/text_window.h')
-rw-r--r-- | include/text_window.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/text_window.h b/include/text_window.h new file mode 100644 index 000000000..63ca8915e --- /dev/null +++ b/include/text_window.h @@ -0,0 +1,19 @@ +#ifndef GUARD_TEXT_WINDOW_H +#define GUARD_TEXT_WINDOW_H + +#include "global.h" + +u16 SetTextWindowBaseTileNum(u16); +void LoadTextWindowGraphics(struct Window *); +void LoadTextWindowGraphics_OverridePalSlot(struct Window *, u8); +void LoadTextWindowGraphics_OverrideFrameType(struct Window *, u8); +void DrawTextWindow(struct Window *win, u8 left, u8 top, u8 right, u8 bottom); +const struct FrameGraphics *GetTextWindowFrameGraphics(u8 frameType); +u16 SetMessageBoxBaseTileNum(u16); +void unref_sub_80651DC(struct Window *, u8 *); +void DisplayMessageBox(struct Window *); +void DrawStandardMessageBox(struct Window *win); +void LoadMessageBoxTiles(struct Window *win); +void sub_806536C(struct Window *win); + +#endif // GUARD_TEXT_WINDOW_H |