mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2025-01-14 15:43:43 +01:00
13 lines
400 B
C
13 lines
400 B
C
|
#ifndef GUARD_NAMING_SCREEN_H
|
||
|
#define GUARD_NAMING_SCREEN_H
|
||
|
|
||
|
#define NAMING_SCREEN_PLAYER 0
|
||
|
#define NAMING_SCREEN_BOX 1
|
||
|
#define NAMING_SCREEN_CAUGHT_MON 2
|
||
|
#define NAMING_SCREEN_3 3
|
||
|
#define NAMING_SCREEN_WANDA 4
|
||
|
|
||
|
void DoNamingScreen(u8 caseId, u8* dst, u16 monSpecies, u8 monGender, u32 monPersonality, void (*callback)(void));
|
||
|
|
||
|
#endif // GUARD_NAMING_SCREEN_H
|