1
0
mirror of https://github.com/Ninjdai1/pokeemerald.git synced 2025-01-19 01:44:20 +01:00

17 lines
355 B
C
Raw Normal View History

2017-10-28 20:43:33 -04:00
#ifndef GUARD_HEAL_LOCATION_H
#define GUARD_HEAL_LOCATION_H
struct HealLocation
{
s8 group;
s8 map;
u16 x;
u16 y;
};
u32 GetHealLocationIndexByMap(u16 mapGroup, u16 mapNum);
const struct HealLocation *GetHealLocationByMap(u16 mapGroup, u16 mapNum);
const struct HealLocation *GetHealLocation(u32 index);
2017-10-28 21:43:06 -04:00
#endif // GUARD_HEAL_LOCATION_H