mirror of
https://github.com/pret/pokefirered.git
synced 2026-05-10 05:43:22 -05:00
12 lines
259 B
C
12 lines
259 B
C
#ifndef BATTLE_PARTNER_H
|
|
#define BATTLE_PARTNER_H
|
|
|
|
#include "difficulty.h"
|
|
#include "constants/battle_partner.h"
|
|
|
|
extern const struct Trainer gBattlePartners[DIFFICULTY_COUNT][PARTNER_COUNT];
|
|
|
|
void FillPartnerParty(u16 trainerId);
|
|
|
|
#endif // BATTLE_PARTNER_H
|