diff options
| author | notyourav <65437533+notyourav@users.noreply.github.com> | 2022-04-06 21:33:32 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-06 21:33:32 -0700 |
| commit | d71929c323af4457c657191e52f8a2abd2175d5d (patch) | |
| tree | ac311861ed8868b3916e600fe988f6b7a0124f5e /include | |
| parent | 55213bc9a4fd54716c67c40554b2f4a010c6cfdf (diff) | |
| parent | 6b44daa6c084f20c637b3b667477e48cc05a6abb (diff) | |
Merge pull request #486 from hatal175/subtask3
Decompile some subtask2 functions
Diffstat (limited to 'include')
| -rw-r--r-- | include/fileselect.h | 1 | ||||
| -rw-r--r-- | include/functions.h | 2 | ||||
| -rw-r--r-- | include/ui.h | 15 |
3 files changed, 15 insertions, 3 deletions
diff --git a/include/fileselect.h b/include/fileselect.h index 066e3e88..375dfeca 100644 --- a/include/fileselect.h +++ b/include/fileselect.h @@ -53,7 +53,6 @@ extern struct_02019EE0 gMapDataBottomSpecial; extern void sub_08056FEC(u32, struct_020227E8*); extern u32 sub_0805F46C(u32, Font*); -extern void RecoverUI(u32 bottomPt, u32 topPt); extern void ClearTilemaps(void); extern void sub_0805194C(u32); extern WStruct* sub_0805F2C8(void); diff --git a/include/functions.h b/include/functions.h index 2f0428a8..1f7d35cf 100644 --- a/include/functions.h +++ b/include/functions.h @@ -24,7 +24,6 @@ extern void CreateMinishEntrance(u32 tile); extern u32 CreateRandomItemDrop(Entity*, u32); extern void DrawDirect(u32, u32); extern void DrawEntities(void); -extern void DrawUIElements(void); extern bool32 EntityWithinDistance(Entity*, s32, s32, s32); extern void FlushSprites(void); extern LayerStruct* GetLayerByIndex(u32); @@ -79,7 +78,6 @@ extern void sub_08016AD2(Entity*); extern u32 sub_0801766C(Entity*); extern void sub_0801AFE4(void); extern void UpdateUIElements(void); -extern void sub_0801C25C(void); extern void sub_0801E104(void); extern void sub_08027870(Entity*); extern void sub_08030118(u32); diff --git a/include/ui.h b/include/ui.h new file mode 100644 index 00000000..05fab34d --- /dev/null +++ b/include/ui.h @@ -0,0 +1,15 @@ +#ifndef UI_H +#define UI_H + +#include "global.h" + +extern void DrawUIElements(void); +extern void CreateUIElement(u32, u32); +extern u32 sub_0801C2F0(u32, u32); +extern void sub_0801C25C(void); +extern void DrawUI(void); +extern void InitUI(bool32); +extern void RefreshUI(void); +extern void RecoverUI(u32 bottomPt, u32 topPt); + +#endif
\ No newline at end of file |
