mirror of
https://github.com/pret/pokeruby.git
synced 2026-08-09 10:57:40 -05:00
* Declare more non-static functions in header files * Use `(void)` for functions without arguments. * Move global-included data to seperate headers * Don't import types or global in header * Fix fieldmap imports * Revert in-code changes * Add missing newlines
22 lines
566 B
C
22 lines
566 B
C
#ifndef GUARD_SAFARI_ZONE_H
|
|
#define GUARD_SAFARI_ZONE_H
|
|
|
|
bool32 GetSafariZoneFlag(void);
|
|
void SetSafariZoneFlag(void);
|
|
void ResetSafariZoneFlag(void);
|
|
|
|
void EnterSafariMode(void);
|
|
void ExitSafariMode(void);
|
|
|
|
bool8 SafariZoneTakeStep(void);
|
|
void SafariZoneRetirePrompt(void);
|
|
void sub_80C824C(void);
|
|
|
|
void SafariZoneGetPokeblockNameInFeeder(void);
|
|
struct Pokeblock *unref_sub_80C8418(void);
|
|
struct Pokeblock *SafariZoneGetActivePokeblock(void);
|
|
void SafariZoneActivatePokeblockFeeder(u8 pokeblock_index);
|
|
bool8 unref_sub_80C853C(void);
|
|
|
|
#endif // GUARD_SAFARI_ZONE_H
|