diff options
author | Akira Akashi <rubenru09@aol.com> | 2021-05-23 21:34:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-23 21:34:14 +0100 |
commit | c3a9cae755efd6c2efde269c0837d2524634d592 (patch) | |
tree | 4ec97468f3963829479447e5772b19b971087b0a /include/list_menu_cursor.h | |
parent | b934918219cb4871c726b4e9815f0b801210865b (diff) | |
parent | 8ffb7a0c637d74d2140fefc7e20e10288b43e286 (diff) |
Merge branch 'master' into master
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 |