aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/GetInfoPacket.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/GetInfoPacket.cpp')
-rw-r--r--Minecraft.World/GetInfoPacket.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/Minecraft.World/GetInfoPacket.cpp b/Minecraft.World/GetInfoPacket.cpp
new file mode 100644
index 00000000..92db130f
--- /dev/null
+++ b/Minecraft.World/GetInfoPacket.cpp
@@ -0,0 +1,22 @@
+#include "stdafx.h"
+#include "InputOutputStream.h"
+#include "PacketListener.h"
+#include "GetInfoPacket.h"
+
+void GetInfoPacket::read(DataInputStream *dis)
+{
+}
+
+void GetInfoPacket::write(DataOutputStream *dos)
+{
+}
+
+void GetInfoPacket::handle(PacketListener *listener)
+{
+ listener->handleGetInfo(shared_from_this());
+}
+
+int GetInfoPacket::getEstimatedSize()
+{
+ return 0;
+} \ No newline at end of file