diff options
author | YamaArashi <shadow962@live.com> | 2016-09-05 13:09:52 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-09-05 17:33:50 -0700 |
commit | 80b3dc30e6784c40791997dc6284c5069caeb27c (patch) | |
tree | bed2781d3a5f3a8cb7ca97f61578fdc96af2f370 /include | |
parent | 110fc301e1fcc8ed132323bf10c9464e826af37e (diff) |
rename text window functions
Diffstat (limited to 'include')
-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 |