mirror of
https://github.com/pret/pmd-red.git
synced 2024-11-23 21:19:53 +00:00
17 lines
148 B
C
17 lines
148 B
C
#ifndef GUARD_POSITION_H
|
|
#define GUARD_POSITION_H
|
|
|
|
struct Position
|
|
{
|
|
s16 x;
|
|
s16 y;
|
|
};
|
|
|
|
struct Position32
|
|
{
|
|
s32 x;
|
|
s32 y;
|
|
};
|
|
|
|
#endif
|