summaryrefslogtreecommitdiff
path: root/include/debug_menu.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/debug_menu.h')
-rw-r--r--include/debug_menu.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/include/debug_menu.h b/include/debug_menu.h
new file mode 100644
index 0000000..7ca58f7
--- /dev/null
+++ b/include/debug_menu.h
@@ -0,0 +1,22 @@
+#ifndef GUARD_DEBUG_MENU_H
+#define GUARD_DEBUG_MENU_H
+
+enum DebugMenuOptions
+{
+ MENU_DEBUG_MENU_DUNGEONS = 0,
+ MENU_DEBUG_MENU_FIELD,
+ MENU_DEBUG_MENU_FIELD_MAP,
+ MENU_DEBUG_MENU_FIELD_SCRIPT,
+ MENU_DEBUG_MENU_DEBUG_MENU,
+ MENU_DEBUG_MENU_UNKNOWN_1,
+ MENU_DEBUG_MENU_STORAGE,
+ MENU_DEBUG_MENU_H_OPEN = 9,
+};
+
+void CreateDebugMenu(void);
+void DeleteDebugMenu(void);
+u32 UpdateDebugMenu(void);
+void SetDebugMenuItems(void);
+void sub_803A3A0(void);
+
+#endif