aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/EntityPos.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/EntityPos.cpp')
-rw-r--r--Minecraft.World/EntityPos.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Minecraft.World/EntityPos.cpp b/Minecraft.World/EntityPos.cpp
index 38b50573..8968ef80 100644
--- a/Minecraft.World/EntityPos.cpp
+++ b/Minecraft.World/EntityPos.cpp
@@ -34,7 +34,7 @@ EntityPos::EntityPos(float yRot, float xRot)
move = false;
}
-EntityPos *EntityPos::lerp(shared_ptr<Entity> e, float f)
+EntityPos *EntityPos::lerp(std::shared_ptr<Entity> e, float f)
{
double xd = e->x+(x-e->x)*f;
double yd = e->y+(y-e->y)*f;