Debug Menu work YIPPEEEEEEEE

This commit is contained in:
Kermalis
2023-08-09 11:09:42 -04:00
parent a4c1d54338
commit b19812538f
52 changed files with 1141 additions and 1212 deletions

31
include/debug_menu1.h Normal file
View File

@@ -0,0 +1,31 @@
#ifndef GUARD_DEBUG_MENU1_H
#define GUARD_DEBUG_MENU1_H
#include "menu.h"
#include "text.h"
// size: 0x1A4
struct DebugMenu
{
struct MenuStruct unk0[4];
struct UnkTextStruct2 unk140[4];
u32 fill1A0;
};
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);
#endif // GUARD_DEBUG_MENU1_H