mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-22 15:08:09 -05:00
24 lines
955 B
C
24 lines
955 B
C
#ifndef POKEPLATINUM_UNK_02079FEC_H
|
|
#define POKEPLATINUM_UNK_02079FEC_H
|
|
|
|
#include "struct_defs/pokemon.h"
|
|
#include "struct_decls/struct_party_decl.h"
|
|
#include "struct_decls/struct_021C0794_decl.h"
|
|
|
|
int Party_sizeof(void);
|
|
Party * sub_02079FF4(u32 param0);
|
|
void sub_0207A008(Party * param0);
|
|
void Party_InitWithCapacity(Party * party, int capacity);
|
|
BOOL Party_AddPokemon(Party * party, Pokemon * pokemon);
|
|
BOOL Party_RemovePokemonBySlotIndex(Party * party, int slot);
|
|
int Party_GetCapacity(const Party * party);
|
|
int Party_GetCurrentCount(const Party * party);
|
|
Pokemon * Party_GetPokemonBySlotIndex(const Party * party, int slot);
|
|
void sub_0207A128(Party * party, int slot, Pokemon * param2);
|
|
BOOL Party_SwapSlots(Party * party, int slotA, int slotB);
|
|
void Party_cpy(const Party * src, Party * dest);
|
|
BOOL Party_HasSpecies(const Party * party, int species);
|
|
Party * Party_GetFromSavedata(UnkStruct_021C0794 * party);
|
|
|
|
#endif // POKEPLATINUM_UNK_02079FEC_H
|