mirror of
https://github.com/pret/pmd-red.git
synced 2026-03-22 10:04:40 -05:00
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
19 lines
174 B
C
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
|