#ifndef GUARD_POSITION_H #define GUARD_POSITION_H struct Position { s16 x; s16 y; }; struct Position32 { s32 x; s32 y; }; #endif