diff options
Diffstat (limited to 'Minecraft.World/SetExperiencePacket.h')
| -rw-r--r-- | Minecraft.World/SetExperiencePacket.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Minecraft.World/SetExperiencePacket.h b/Minecraft.World/SetExperiencePacket.h index 499b7efd..c8aff620 100644 --- a/Minecraft.World/SetExperiencePacket.h +++ b/Minecraft.World/SetExperiencePacket.h @@ -17,10 +17,10 @@ public: virtual void handle(PacketListener *listener); 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 SetExperiencePacket()); } + static std::shared_ptr<Packet> create() { return std::shared_ptr<Packet>(new SetExperiencePacket()); } virtual int getId() { return 43; } };
\ No newline at end of file |
