mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-08-06 02:33:28 -05:00
19 lines
407 B
C
19 lines
407 B
C
#ifndef POKEPLATINUM_STRUCT_TRAINER_H
|
|
#define POKEPLATINUM_STRUCT_TRAINER_H
|
|
|
|
#include "constants/string.h"
|
|
|
|
#include "struct_defs/trainer_data.h"
|
|
|
|
#include "charcode.h"
|
|
#include "easy_chat_sentence.h"
|
|
|
|
typedef struct Trainer {
|
|
TrainerHeader header;
|
|
charcode_t name[TRAINER_NAME_LEN + 1];
|
|
EasyChatSentence winMsg;
|
|
EasyChatSentence loseMsg;
|
|
} Trainer;
|
|
|
|
#endif // POKEPLATINUM_STRUCT_TRAINER_H
|