diff options
author | yenatch <yenatch@gmail.com> | 2016-09-09 01:16:58 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2016-09-09 01:16:58 -0400 |
commit | 5080b9083c70d12528015678940af9b3c61a7faa (patch) | |
tree | e6467e8f7cec95b8ca5e10f0ae2c0d0bea7ae67d /include/text_window.h | |
parent | 8de743b6acbb32dcd2b5d52e82530831b91f4b59 (diff) | |
parent | 06bed8be90c865057378482f2b179749b082619c (diff) |
Merge remote-tracking branch 'origin/master' into more-map-splits
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 |