mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-12 13:54:59 -05:00
17 lines
362 B
C
17 lines
362 B
C
#ifndef POKEHEARTGOLD_TRADE_ANIM_H
|
|
#define POKEHEARTGOLD_TRADE_ANIM_H
|
|
|
|
#include "pokemon_types_def.h"
|
|
#include "player_data.h"
|
|
|
|
typedef struct TRADE_ANIM_WORK {
|
|
BOXMON *my_boxmon;
|
|
BOXMON *trade_boxmon;
|
|
PLAYERPROFILE *trade_profile;
|
|
int time_of_day;
|
|
int is_ingame;
|
|
OPTIONS *options;
|
|
} TRADE_ANIM_WORK;
|
|
|
|
#endif //POKEHEARTGOLD_TRADE_ANIM_H
|