mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-05-09 04:11:55 -05:00
11 lines
241 B
C
11 lines
241 B
C
#ifndef POKEPLATINUM_STRUCT_DEF_PLAYER_DATA_H
|
|
#define POKEPLATINUM_STRUCT_DEF_PLAYER_DATA_H
|
|
|
|
typedef struct PlayerData {
|
|
u16 cyclingGear;
|
|
u16 runningShoes;
|
|
u32 form;
|
|
} PlayerData;
|
|
|
|
#endif // POKEPLATINUM_STRUCT_DEF_PLAYER_DATA_H
|