diff options
Diffstat (limited to 'Minecraft.World/TileDestructionPacket.h')
| -rw-r--r-- | Minecraft.World/TileDestructionPacket.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Minecraft.World/TileDestructionPacket.h b/Minecraft.World/TileDestructionPacket.h index 20cd7db9..394ffaa1 100644 --- a/Minecraft.World/TileDestructionPacket.h +++ b/Minecraft.World/TileDestructionPacket.h @@ -27,9 +27,9 @@ public: int getState(); virtual bool canBeInvalidated(); - virtual bool isInvalidatedBy(shared_ptr<Packet> packet); + virtual bool isInvalidatedBy(std::shared_ptr<Packet> packet); public: - static shared_ptr<Packet> create() { return shared_ptr<Packet>(new TileDestructionPacket()); } + static std::shared_ptr<Packet> create() { return std::shared_ptr<Packet>(new TileDestructionPacket()); } virtual int getId() { return 55; } };
\ No newline at end of file |
