This commit is contained in:
Dander7BD 2014-02-11 14:14:06 +01:00
parent c3b2c1e912
commit 46d1fa13e1
1 changed files with 7 additions and 2 deletions

View File

@ -20,7 +20,10 @@ public:
struct ObjPos :public ProtocolStruct struct ObjPos :public ProtocolStruct
{ {
int object_ID; int object_ID;
float worldPos[16]; //float worldPos[16];
float position[3];
float angularAxis[3];
float rotation[4];
}; };
struct NewObj :public ProtocolStruct struct NewObj :public ProtocolStruct
{ {
@ -39,7 +42,9 @@ public:
}; };
struct PlayerPos :public ProtocolStruct struct PlayerPos :public ProtocolStruct
{ {
float playerPos[3]; float position[3];
float angularAxis[3];
// float playerPos[3];
}; };
struct PlayerMove :public ProtocolStruct struct PlayerMove :public ProtocolStruct
{ {