mirror of
https://github.com/pret/pokefirered.git
synced 2026-04-24 23:07:39 -05:00
18 lines
307 B
C
18 lines
307 B
C
#ifndef GUARD_HEAL_LOCATION_H
|
|
#define GUARD_HEAL_LOCATION_H
|
|
|
|
#include "global.h"
|
|
|
|
struct HealLocation
|
|
{
|
|
s8 group;
|
|
s8 map;
|
|
s16 x;
|
|
s16 y;
|
|
};
|
|
|
|
const struct HealLocation *GetHealLocation(u32 loc);
|
|
void SetWhiteoutRespawnWarpAndHealerNpc(struct WarpData * warp);
|
|
|
|
#endif // GUARD_HEAL_LOCATION_H
|