diff options
Diffstat (limited to 'Minecraft.World/XZPacket.h')
| -rw-r--r-- | Minecraft.World/XZPacket.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Minecraft.World/XZPacket.h b/Minecraft.World/XZPacket.h new file mode 100644 index 00000000..0c4115e0 --- /dev/null +++ b/Minecraft.World/XZPacket.h @@ -0,0 +1,30 @@ +#pragma once + +// 4J ADDED THIS PACKET + +using namespace std; + +#include "Packet.h" + +class XZPacket : public Packet, public enable_shared_from_this<XZPacket> +{ +public: + static const int STRONGHOLD; + + char action; + int x; + int z; + + XZPacket(); + ~XZPacket(); + XZPacket(char action, int x, int z); + + virtual void handle(PacketListener *listener); + virtual void read(DataInputStream *dis); + virtual void write(DataOutputStream *dos); + virtual int getEstimatedSize(); + +public: + static shared_ptr<Packet> create() { return shared_ptr<Packet>(new XZPacket()); } + virtual int getId() { return 166; } +};
\ No newline at end of file |
