pokeplatinum/include/struct_defs/struct_party.h
2023-09-14 00:22:44 +01:00

13 lines
230 B
C

#ifndef POKEPLATINUM_STRUCT_PARTY_H
#define POKEPLATINUM_STRUCT_PARTY_H
#include "pokemon.h"
typedef struct Party {
int capacity;
int currentCount;
Pokemon pokemon[6];
} Party;
#endif // POKEPLATINUM_STRUCT_PARTY_H