mirror of
https://github.com/pret/pokeheartgold.git
synced 2024-11-30 08:30:54 +00:00
14 lines
454 B
C
14 lines
454 B
C
#ifndef POKEHEARTGOLD_LIST_MENU_CURSOR_H
|
|
#define POKEHEARTGOLD_LIST_MENU_CURSOR_H
|
|
|
|
#include "bg_window.h"
|
|
|
|
struct ListMenuCursor;
|
|
|
|
struct ListMenuCursor *ListMenuCursorNew(HeapID heapId);
|
|
void ListMenuCursorSetColor(struct ListMenuCursor *cursor, u32 color);
|
|
void DestroyListMenuCursorObj(struct ListMenuCursor *cursor);
|
|
void ListMenuUpdateCursorObj(struct ListMenuCursor *cursor, Window *window, u8 x, u8 y);
|
|
|
|
#endif // POKEHEARTGOLD_LIST_MENU_CURSOR_H
|