mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-04-26 00:23:14 -05:00
17 lines
371 B
C
17 lines
371 B
C
#ifndef POKEHEARTGOLD_TRADE_ANIM_H
|
|
#define POKEHEARTGOLD_TRADE_ANIM_H
|
|
|
|
#include "player_data.h"
|
|
#include "pokemon_types_def.h"
|
|
|
|
typedef struct TRADE_ANIM_WORK {
|
|
BoxPokemon *my_boxmon;
|
|
BoxPokemon *trade_boxmon;
|
|
PlayerProfile *trade_profile;
|
|
int time_of_day;
|
|
int is_ingame;
|
|
Options *options;
|
|
} TRADE_ANIM_WORK;
|
|
|
|
#endif // POKEHEARTGOLD_TRADE_ANIM_H
|