mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-05 20:46:28 -05:00
12 lines
324 B
C
12 lines
324 B
C
#ifndef POKEHEARTGOLD_FRONTIER_DATA_H
|
|
#define POKEHEARTGOLD_FRONTIER_DATA_H
|
|
|
|
#include "save.h"
|
|
|
|
typedef struct FrontierData FrontierData;
|
|
|
|
FrontierData *Save_FrontierData_Get(SaveData *saveData);
|
|
u32 FrontierData_BattlePointAction(FrontierData *frontierData, u32 param, u32 action);
|
|
|
|
#endif // POKEHEARTGOLD_FRONTIER_DATA_H
|