1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef GUARD_POSITION_H #define GUARD_POSITION_H struct Position { s16 x; s16 y; }; struct Position32 { s32 x; s32 y; }; #endif