mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-17 03:57:38 +01:00
19 lines
257 B
C
19 lines
257 B
C
|
#ifndef GUARD_HEAL_LOCATION_H
|
||
|
#define GUARD_HEAL_LOCATION_H
|
||
|
|
||
|
// Exported type declarations
|
||
|
|
||
|
struct HealLocation
|
||
|
{
|
||
|
s8 group;
|
||
|
s8 map;
|
||
|
u16 x;
|
||
|
u16 y;
|
||
|
};
|
||
|
|
||
|
// Exported RAM declarations
|
||
|
|
||
|
// Exported ROM declarations
|
||
|
|
||
|
#endif //GUARD_HEAL_LOCATION_H
|