mirror of
https://github.com/pret/pmd-red.git
synced 2026-04-24 06:57:18 -05:00
19 lines
328 B
C
19 lines
328 B
C
#ifndef GUARD_STR_POSITION_H
|
|
#define GUARD_STR_POSITION_H
|
|
|
|
// size: 0x4
|
|
typedef struct Position
|
|
{
|
|
/* 0x0 */ s16 x;
|
|
/* 0x2 */ s16 y;
|
|
} Position;
|
|
|
|
// size: 0x8
|
|
typedef struct Position32
|
|
{
|
|
/* 0x0 */ s32 x; // TODO: convert to s24_8 across the codebase
|
|
/* 0x4 */ s32 y;
|
|
} Position32;
|
|
|
|
#endif // GUARD_STR_POSITION_H
|