pmd-red/include/position.h

18 lines
269 B
C

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