mirror of
https://github.com/GearsProgress/Poke_Transporter_GB.git
synced 2026-04-26 10:17:40 -05:00
20 lines
283 B
C++
20 lines
283 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();
|
|
|
|
private:
|
|
Pokemon party[6];
|
|
byte party_data_array[444];
|
|
int last_error;
|
|
};
|
|
|
|
#endif |