pokeplatinum/include/struct_defs/struct_party.h
2023-02-20 01:05:16 -03:00

13 lines
242 B
C

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