aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/ContainerSetDataPacket.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/ContainerSetDataPacket.h')
-rw-r--r--Minecraft.World/ContainerSetDataPacket.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/Minecraft.World/ContainerSetDataPacket.h b/Minecraft.World/ContainerSetDataPacket.h
new file mode 100644
index 00000000..ce075e00
--- /dev/null
+++ b/Minecraft.World/ContainerSetDataPacket.h
@@ -0,0 +1,24 @@
+#pragma once
+using namespace std;
+
+#include "Packet.h"
+
+class ContainerSetDataPacket : public Packet, public enable_shared_from_this<ContainerSetDataPacket>
+{
+public:
+ int containerId;
+ int id;
+ int value;
+
+ ContainerSetDataPacket();
+ ContainerSetDataPacket(int containerId, int id, int value);
+
+ 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 ContainerSetDataPacket()); }
+ virtual int getId() { return 105; }
+}; \ No newline at end of file