mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-08-09 04:07:29 -05:00
11 lines
255 B
C
11 lines
255 B
C
#ifndef POKEPLATINUM_FRONTIER_TRAINER_BASE_H
|
|
#define POKEPLATINUM_FRONTIER_TRAINER_BASE_H
|
|
|
|
typedef struct FrontierTrainerBase {
|
|
u16 trainerType;
|
|
u16 numSets;
|
|
u16 setIDs[];
|
|
} FrontierTrainerBase;
|
|
|
|
#endif // POKEPLATINUM_FRONTIER_TRAINER_BASE_H
|