WIP on the larion phsyics struct

This commit is contained in:
KimLS 2024-11-15 23:53:08 -08:00
parent 2f46da5d99
commit 45d39f44f2

View File

@ -230,6 +230,27 @@ namespace Larion {
uint8_t data[5];
};
};
struct Spawn_Struct_Position
{
signed y : 19;
signed deltaX : 13;
unsigned heading : 12;
signed z : 19;
unsigned pad1 : 1;
unsigned pitch : 12;
signed animation : 10; //these might be swapped
signed deltaHeading : 10; //these might be swapped
signed deltaY : 13;
signed deltaZ : 13;
unsigned pad3 : 6;
signed x : 19;
unsigned pad4 : 13;
};
#pragma pack()
}; //end namespace structs