aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/ClientCommandPacket.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/ClientCommandPacket.h')
-rw-r--r--Minecraft.World/ClientCommandPacket.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/Minecraft.World/ClientCommandPacket.h b/Minecraft.World/ClientCommandPacket.h
new file mode 100644
index 00000000..2f614ddf
--- /dev/null
+++ b/Minecraft.World/ClientCommandPacket.h
@@ -0,0 +1,24 @@
+#pragma once
+
+#include "Packet.h"
+
+class ClientCommandPacket : public Packet, public enable_shared_from_this<ClientCommandPacket>
+{
+public:
+ static const int LOGIN_COMPLETE = 0;
+ static const int PERFORM_RESPAWN = 1;
+
+ int action;
+
+ ClientCommandPacket();
+ ClientCommandPacket(int action);
+
+ void read(DataInputStream *dis);
+ void write(DataOutputStream *dos);
+ void handle(PacketListener *listener);
+ int getEstimatedSize();
+
+public:
+ static shared_ptr<Packet> create() { return shared_ptr<Packet>(new ClientCommandPacket()); }
+ virtual int getId() { return 205; }
+}; \ No newline at end of file