aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/Path.cpp
diff options
context:
space:
mode:
authorvoid_17 <heroerror3@gmail.com>2026-03-02 17:37:16 +0700
committervoid_17 <heroerror3@gmail.com>2026-03-02 17:37:16 +0700
commit119bff351450ea16ffda550b6e0f67379b29f708 (patch)
treed9f28714afd516bc2450f33b0a77c5e05ff4de90 /Minecraft.World/Path.cpp
parent8a2a62ea1d47364f802cf9aae97668bc4a7007b5 (diff)
Revert "shared_ptr -> std::shared_ptr"
This reverts commit 7074f35e4ba831e358117842b99ee35b87f85ae5.
Diffstat (limited to 'Minecraft.World/Path.cpp')
-rw-r--r--Minecraft.World/Path.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/Minecraft.World/Path.cpp b/Minecraft.World/Path.cpp
index 61bd055e..538917f6 100644
--- a/Minecraft.World/Path.cpp
+++ b/Minecraft.World/Path.cpp
@@ -13,7 +13,7 @@ Path::~Path()
}
}
-Path::Path(NodeArray nodes)
+Path::Path(NodeArray nodes)
{
index = 0;
@@ -30,26 +30,26 @@ Path::Path(NodeArray nodes)
}
}
-void Path::next()
+void Path::next()
{
index++;
}
-bool Path::isDone()
+bool Path::isDone()
{
return index >= length;
}
-Node *Path::last()
+Node *Path::last()
{
- if (length > 0)
+ if (length > 0)
{
return nodes[length - 1];
}
return NULL;
}
-Node *Path::get(int i)
+Node *Path::get(int i)
{
return nodes[i];
}
@@ -74,7 +74,7 @@ void Path::setIndex(int index)
this->index = index;
}
-Vec3 *Path::getPos(std::shared_ptr<Entity> e, int index)
+Vec3 *Path::getPos(shared_ptr<Entity> e, int index)
{
double x = nodes[index]->x + (int) (e->bbWidth + 1) * 0.5;
double y = nodes[index]->y;
@@ -82,7 +82,7 @@ Vec3 *Path::getPos(std::shared_ptr<Entity> e, int index)
return Vec3::newTemp(x, y, z);
}
-Vec3 *Path::currentPos(std::shared_ptr<Entity> e)
+Vec3 *Path::currentPos(shared_ptr<Entity> e)
{
return getPos(e, index);
}