Poke_Transporter_GB/include/pokemon_party.h
Remnants of Forgotten Disney 0cca5a82ad Default Language Selection
2023-10-26 12:19:24 -05:00

24 lines
394 B
C++

#ifndef POKEMON_PARTY_H
#define POKEMON_PARTY_H
#include <tonc.h>
#include "pokemon.h"
class Pokemon_Party
{
public:
Pokemon_Party();
void start_link();
int get_last_error();
void load_pokemon();
Pokemon* get_full_pokemon_array();
private:
Pokemon party[6];
byte party_data_array[GEN2_INT_SIZE + 4];
int last_error;
int party_size;
int gen;
};
#endif