mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
13 lines
292 B
C
13 lines
292 B
C
#ifndef POKEPLATINUM_CLEAR_GAME_PLAYER_INFO_H
|
|
#define POKEPLATINUM_CLEAR_GAME_PLAYER_INFO_H
|
|
|
|
#include "pokedex.h"
|
|
|
|
typedef struct ClearGamePlayerInfo {
|
|
int gender;
|
|
BOOL gameCompleted;
|
|
const Pokedex *pokedex;
|
|
} ClearGamePlayerInfo;
|
|
|
|
#endif // POKEPLATINUM_CLEAR_GAME_PLAYER_INFO_H
|