the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2
3class EntityPos
4{
5public:
6 double x, y, z;
7 float yRot, xRot;
8 bool rot;
9 bool move;
10
11 EntityPos(double x, double y, double z, float yRot, float xRot);
12 EntityPos(double x, double y, double z);
13 EntityPos(float yRot, float xRot);
14 EntityPos *lerp(shared_ptr<Entity> e, float f);
15};