mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-22 18:26:14 -05:00
13 lines
230 B
C
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
|