aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/KeepAlivePacket.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/KeepAlivePacket.h')
-rw-r--r--Minecraft.World/KeepAlivePacket.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Minecraft.World/KeepAlivePacket.h b/Minecraft.World/KeepAlivePacket.h
index a44d8745..d05e76d4 100644
--- a/Minecraft.World/KeepAlivePacket.h
+++ b/Minecraft.World/KeepAlivePacket.h
@@ -16,10 +16,10 @@ public:
virtual void write(DataOutputStream *dos);
virtual int getEstimatedSize();
virtual bool canBeInvalidated();
- virtual bool isInvalidatedBy(shared_ptr<Packet> packet);
+ virtual bool isInvalidatedBy(std::shared_ptr<Packet> packet);
virtual bool isAync();
public:
- static shared_ptr<Packet> create() { return shared_ptr<Packet>(new KeepAlivePacket()); }
+ static std::shared_ptr<Packet> create() { return std::shared_ptr<Packet>(new KeepAlivePacket()); }
virtual int getId() { return 0; }
}; \ No newline at end of file