mirror of
https://github.com/pret/pokeruby.git
synced 2024-12-12 15:17:27 +00:00
29 lines
711 B
C
29 lines
711 B
C
#ifndef GUARD_EVENT_DATA_H
|
|
#define GUARD_EVENT_DATA_H
|
|
|
|
#include "flags.h"
|
|
#include "vars.h"
|
|
|
|
void InitEventData(void);
|
|
void ClearTempFieldEventData(void);
|
|
void ClearUpperFlags(void);
|
|
void DisableNationalPokedex(void);
|
|
void EnableNationalPokedex(void);
|
|
bool32 IsNationalPokedexEnabled(void);
|
|
void DisableMysteryGift(void);
|
|
void EnableMysteryGift(void);
|
|
bool32 IsMysteryGiftEnabled(void);
|
|
void DisableResetRTC(void);
|
|
void EnableResetRTC(void);
|
|
bool32 CanResetRTC(void);
|
|
u16 *GetVarPointer(u16 id);
|
|
u16 VarGet(u16 id);
|
|
bool8 VarSet(u16 id, u16 value);
|
|
u8 VarGetFieldObjectGraphicsId(u8 id);
|
|
u8 *GetFlagPointer(u16 id);
|
|
u8 FlagSet(u16 id);
|
|
u8 FlagReset(u16 id);
|
|
bool8 FlagGet(u16 id);
|
|
|
|
#endif // GUARD_EVENT_DATA_H
|