pokeplatinum/include/coordinates.h
VicSevenT 007a26cc66
Some checks failed
build / build (push) Has been cancelled
Document remainder of Battle Factory App (Overlay 105) (#983)
2026-03-04 07:58:34 -08:00

15 lines
254 B
C

#ifndef POKEPLATINUM_COORDINATES_H
#define POKEPLATINUM_COORDINATES_H
typedef struct CoordinatesS16 {
s16 x;
s16 y;
} CoordinatesS16;
typedef struct CoordinatesU16 {
u16 x;
u16 y;
} CoordinatesU16;
#endif // POKEPLATINUM_COORDINATES_H