diff options
author | Rémi Calixte <remicalixte.rmc@gmail.com> | 2021-05-22 18:54:22 +0200 |
---|---|---|
committer | Rémi Calixte <remicalixte.rmc@gmail.com> | 2021-05-22 18:54:22 +0200 |
commit | 15896c5a165d9d8bcfd02e3617e3ab7f10602b5f (patch) | |
tree | cfc589be7590138df572e951a3b414ef4ce8a8f0 /include/list_menu_cursor.h | |
parent | 595b90d91c903837b4b0199159a2dece90ea4dee (diff) | |
parent | 1e7dcfbf615f387c3b4a8a7577ff36dd57922f60 (diff) |
Merge branch 'master' into unk_02016B94
Diffstat (limited to 'include/list_menu_cursor.h')
-rw-r--r-- | include/list_menu_cursor.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/list_menu_cursor.h b/include/list_menu_cursor.h new file mode 100644 index 00000000..e4a4b6b9 --- /dev/null +++ b/include/list_menu_cursor.h @@ -0,0 +1,17 @@ +#ifndef POKEDIAMOND_LIST_MENU_CURSOR_H +#define POKEDIAMOND_LIST_MENU_CURSOR_H + +#include "unk_02016B94.h" + +// TODO: Move to its own header, and fill it out +struct ListMenuCursor +{ + // ??? +}; + +extern struct ListMenuCursor * ListMenuCursorNew(u32 heap_id); +extern void ListMenuUpdateCursorObj(struct ListMenuCursor *, struct Window *, u8 x, u8 y); +extern void ListMenuCursorSetColor(struct ListMenuCursor *, u32); +extern void DestroyListMenuCursorObj(struct ListMenuCursor *); + +#endif // POKEDIAMOND_LIST_MENU_CURSOR_H |