diff options
Diffstat (limited to 'Minecraft.World/TextureAndGeometryChangePacket.h')
| -rw-r--r-- | Minecraft.World/TextureAndGeometryChangePacket.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Minecraft.World/TextureAndGeometryChangePacket.h b/Minecraft.World/TextureAndGeometryChangePacket.h new file mode 100644 index 00000000..dabe78fa --- /dev/null +++ b/Minecraft.World/TextureAndGeometryChangePacket.h @@ -0,0 +1,25 @@ +#pragma once +using namespace std; + +#include "Packet.h" + +class TextureAndGeometryChangePacket : public Packet, public enable_shared_from_this<TextureAndGeometryChangePacket> +{ +public: + + int id; + wstring path; + DWORD dwSkinID; + + TextureAndGeometryChangePacket(); + TextureAndGeometryChangePacket(shared_ptr<Entity> e, const wstring &path); + + virtual void read(DataInputStream *dis); + virtual void write(DataOutputStream *dos); + virtual void handle(PacketListener *listener); + virtual int getEstimatedSize(); + +public: + static shared_ptr<Packet> create() { return shared_ptr<Packet>(new TextureAndGeometryChangePacket()); } + virtual int getId() { return 161; } +};
\ No newline at end of file |
