mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-06-03 06:15:33 -05:00
14 lines
307 B
C
14 lines
307 B
C
#ifndef POKEPLATINUM_STRUCT_POKEMON_H
|
|
#define POKEPLATINUM_STRUCT_POKEMON_H
|
|
|
|
#include "struct_defs/box_pokemon.h"
|
|
#include "struct_decls/party_pokemon.h"
|
|
#include "struct_defs/party_pokemon.h"
|
|
|
|
typedef struct {
|
|
BoxPokemon box;
|
|
PartyPokemon party;
|
|
} Pokemon;
|
|
|
|
#endif // POKEPLATINUM_STRUCT_POKEMON_H
|