blob: 2480d1723da379d75441323909b7a88e822c7026 (
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 *GetHealLocation(u32 loc);
void SetWhiteoutRespawnWarpAndHealerNpc(struct WarpData * warp);
#endif // GUARD_HEAL_LOCATION_H
|