mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-06-01 05:01:11 -05:00
25 lines
663 B
C
25 lines
663 B
C
#ifndef POKEHEARTGOLD_UNK_02082908_H
|
|
#define POKEHEARTGOLD_UNK_02082908_H
|
|
|
|
#include "options.h"
|
|
#include "overlay_manager.h"
|
|
#include "pm_string.h"
|
|
|
|
extern const OVY_MGR_TEMPLATE sOverlayTemplate_NamingScreen;
|
|
|
|
typedef struct NamingScreenArgs {
|
|
int kind;
|
|
int playerGender;
|
|
int monForm;
|
|
u8 unkC[0x4];
|
|
int monGender;
|
|
int unk14;
|
|
String *nameInputString;
|
|
u16 unk1C[PLAYER_NAME_LENGTH + 1];
|
|
} NamingScreenArgs;
|
|
|
|
void NamingScreen_DeleteArgs(NamingScreenArgs *namingScreenArgs);
|
|
NamingScreenArgs *NamingScreen_CreateArgs(HeapID heapId, int kind, int param, int maxLen, Options *options, int *a5);
|
|
|
|
#endif // POKEHEARTGOLD_UNK_02082908_H
|