blob: 9680f8fdd9432c82cfb460abd791f17876622b46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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 *GetHealLocationPointer(u32 loc);
void SetWhiteoutRespawnWarpAndHealerNpc(struct WarpData * warp);
#endif // GUARD_HEAL_LOCATION_H
|