pmd-red/include/position.h
Kermalis f510d377e0 Clean/Correct some structs
Changed UnkTextStruct2_sub to ushorts because they are loaded as int16s in text.s (which I was working on)
That might change some current nonmatchings since they revolve around this struct
2023-07-25 01:41:05 -04:00

19 lines
174 B
C

#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