mirror of
https://github.com/pret/pokeruby.git
synced 2026-08-09 10:57:40 -05:00
* Declare more non-static functions in header files * Use `(void)` for functions without arguments. * Move global-included data to seperate headers * Don't import types or global in header * Fix fieldmap imports * Revert in-code changes * Add missing newlines
18 lines
506 B
C
18 lines
506 B
C
#ifndef GUARD_MORI_DEBUG_MENU_H
|
|
#define GUARD_MORI_DEBUG_MENU_H
|
|
|
|
s8 sub_8083D4C(void);
|
|
u8 MoriDebugMenu_SearchChild(u8 a1, u8 a2, u8 *ptr);
|
|
s8 MoriDebugMenu_Egg(void);
|
|
s8 MoriDebugMenu_MaleEgg(void);
|
|
s8 MoriDebugMenu_1000Steps(void);
|
|
s8 MoriDebugMenu_10000Steps(void);
|
|
s8 MoriDebugMenu_MoveTutor(void);
|
|
s8 MoriDebugMenu_BreedEgg(void);
|
|
s8 MoriDebugMenu_LongName(void);
|
|
s8 MoriDebugMenu_PokeblockCase(void);
|
|
s8 MoriDebugMenuProcessInput(void);
|
|
s8 InitMoriDebugMenu(void);
|
|
|
|
#endif // GUARD_MORI_DEBUG_MENU_H
|