mirror of
https://github.com/cavv-dev/Kekatsu-DS.git
synced 2025-06-18 08:45:33 -04:00
16 lines
221 B
C
16 lines
221 B
C
#pragma once
|
|
|
|
typedef enum {
|
|
MENU_NONE,
|
|
MENU_BROWSE,
|
|
MENU_RESULTS,
|
|
MENU_ENTRY,
|
|
MENU_DOWNLOAD,
|
|
MENU_DATABASES,
|
|
MENU_SETTINGS,
|
|
MENU_INFO,
|
|
MENU_EXIT
|
|
} MenuEnum;
|
|
|
|
void menuBegin(MenuEnum);
|