mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
24 lines
956 B
C
24 lines
956 B
C
#ifndef POKEPLATINUM_FIELD_SYSTEM_H
|
|
#define POKEPLATINUM_FIELD_SYSTEM_H
|
|
|
|
#include "applications/poketch/poketch_system.h"
|
|
#include "field/field_system_decl.h"
|
|
|
|
#include "bg_window.h"
|
|
#include "overlay_manager.h"
|
|
#include "savedata.h"
|
|
|
|
void FieldSystem_StartFieldMapInner(FieldSystem *fieldSystem);
|
|
void FieldSystem_FlagNotRunningFieldMap(FieldSystem *fieldSystem);
|
|
BOOL FieldSystem_HasParentProcess(FieldSystem *fieldSystem);
|
|
BOOL FieldSystem_IsRunningFieldMapInner(FieldSystem *fieldSystem);
|
|
BOOL FieldSystem_HasChildProcess(FieldSystem *fieldSystem);
|
|
void FieldSystem_StartChildProcess(FieldSystem *fieldSystem, const ApplicationManagerTemplate *appTemplate, void *appArgs);
|
|
void FieldSystem_PauseProcessing(void);
|
|
void FieldSystem_ResumeProcessing(void);
|
|
PoketchSystem *FieldSystem_GetPoketchSystem(void);
|
|
BgConfig *FieldSystem_GetBgConfig(void *fieldSystem);
|
|
SaveData *FieldSystem_GetSaveData(void *fieldSystem);
|
|
|
|
#endif // POKEPLATINUM_UNK_0203CC84_H
|