diff options
Diffstat (limited to 'Minecraft.World/TextureChangePacket.h')
| -rw-r--r-- | Minecraft.World/TextureChangePacket.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Minecraft.World/TextureChangePacket.h b/Minecraft.World/TextureChangePacket.h index 959fc4fe..7d99b3b3 100644 --- a/Minecraft.World/TextureChangePacket.h +++ b/Minecraft.World/TextureChangePacket.h @@ -17,7 +17,7 @@ public: wstring path; TextureChangePacket(); - TextureChangePacket(shared_ptr<Entity> e, ETextureChangeType action, const wstring &path); + TextureChangePacket(std::shared_ptr<Entity> e, ETextureChangeType action, const wstring &path); virtual void read(DataInputStream *dis); virtual void write(DataOutputStream *dos); @@ -25,6 +25,6 @@ public: virtual int getEstimatedSize(); public: - static shared_ptr<Packet> create() { return shared_ptr<Packet>(new TextureChangePacket()); } + static std::shared_ptr<Packet> create() { return std::shared_ptr<Packet>(new TextureChangePacket()); } virtual int getId() { return 157; } };
\ No newline at end of file |
