mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
18 lines
639 B
C
18 lines
639 B
C
#ifndef POKEPLATINUM_SPAWN_LOCATIONS_H
|
|
#define POKEPLATINUM_SPAWN_LOCATIONS_H
|
|
|
|
#include "field/field_system_decl.h"
|
|
|
|
#include "location.h"
|
|
|
|
int FieldOverworldState_GetDefaultWarpID(void);
|
|
void Location_InitFly(int flyDestination, Location *location);
|
|
void Location_InitBlackOut(int blackOutDestination, Location *location);
|
|
int GetMapBlackOutWarpId(int mapId);
|
|
int GetMapFlyWarpId(int mapId);
|
|
int GetSpawnIdByMapAndCoords(int mapID, int param1, int param2);
|
|
void TryUnlockFlyLocationByMap(FieldSystem *fieldSystem, int param1);
|
|
BOOL CheckFlyLocationUnlocked(FieldSystem *fieldSystem, int param1);
|
|
|
|
#endif // POKEPLATINUM_SPAWN_LOCATIONS_H
|