diff options
Diffstat (limited to 'src/Entity.hpp')
-rw-r--r-- | src/Entity.hpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Entity.hpp b/src/Entity.hpp new file mode 100644 index 0000000..6df7983 --- /dev/null +++ b/src/Entity.hpp @@ -0,0 +1,14 @@ +#pragma once + +#include "Utility.hpp" +#include "Vector.hpp" + +struct Entity { + Uuid uuid; + VectorF pos; + VectorF vel; + unsigned int entityId; + double yaw; + double pitch; + static VectorF DecodeVelocity(short x, short y, short z); +};
\ No newline at end of file |