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