mirror of
https://github.com/pret/pokeemerald.git
synced 2026-04-22 15:40:28 -05:00
Co-authored-by: CallmeEchoo <callmeechoo@github.com> Co-authored-by: Your Name <you@example.com>
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
|