aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/EntityPos.h
blob: 5b0649012d37708647d85441f7e986b8b050c2d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);
};