#ifndef GUARD_POSITION_H #define GUARD_POSITION_H // size: 0x4 struct Position { s16 x; s16 y; }; // size: 0x8 struct Position32 { s32 x; s32 y; }; #endif