mirror of
https://github.com/pret/pokeheartgold.git
synced 2025-01-05 20:19:31 +00:00
34 lines
625 B
C
34 lines
625 B
C
#ifndef POKEHEARTGOLD_PLAYER_DATA_H
|
|
#define POKEHEARTGOLD_PLAYER_DATA_H
|
|
|
|
#include "save.h"
|
|
#include "options.h"
|
|
#include "coins.h"
|
|
#include "igt.h"
|
|
|
|
typedef struct PLAYERPROFILE {
|
|
u16 name[OT_NAME_LENGTH + 1];
|
|
u32 id;
|
|
u32 money;
|
|
u8 gender;
|
|
u8 language;
|
|
u8 johtoBadges;
|
|
u8 avatar;
|
|
u8 version;
|
|
u8 gameClear:1;
|
|
u8 natDex:1;
|
|
u8 dummy;
|
|
u8 kantoBadges;
|
|
} PLAYERPROFILE;
|
|
|
|
typedef struct PLAYERDATA {
|
|
OPTIONS options;
|
|
PLAYERPROFILE profile;
|
|
u16 coins;
|
|
IGT igt;
|
|
} PLAYERDATA;
|
|
|
|
u16 *Sav2_PlayerData_GetCoinsAddr(SAVEDATA *saveData);
|
|
|
|
#endif //POKEHEARTGOLD_PLAYER_DATA_H
|