first commit
This commit is contained in:
15
Minecraft.World/EntityPos.h
Normal file
15
Minecraft.World/EntityPos.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
class EntityPos
|
||||
{
|
||||
public:
|
||||
double x, y, z;
|
||||
float yRot, xRot;
|
||||
bool rot;
|
||||
bool move;
|
||||
|
||||
EntityPos(double x, double y, double z, float yRot, float xRot);
|
||||
EntityPos(double x, double y, double z);
|
||||
EntityPos(float yRot, float xRot);
|
||||
EntityPos *lerp(shared_ptr<Entity> e, float f);
|
||||
};
|
||||
Reference in New Issue
Block a user