mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
15 lines
254 B
C
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
|