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 e13b547e..dabe78fa 100644 --- a/Minecraft.World/TextureAndGeometryChangePacket.h +++ b/Minecraft.World/TextureAndGeometryChangePacket.h @@ -12,7 +12,7 @@ public: DWORD dwSkinID; TextureAndGeometryChangePacket(); - TextureAndGeometryChangePacket(std::shared_ptr<Entity> e, const wstring &path); + TextureAndGeometryChangePacket(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 std::shared_ptr<Packet> create() { return std::shared_ptr<Packet>(new TextureAndGeometryChangePacket()); } + static shared_ptr<Packet> create() { return shared_ptr<Packet>(new TextureAndGeometryChangePacket()); } virtual int getId() { return 161; } };
\ No newline at end of file |
