summaryrefslogtreecommitdiffstats
path: root/code/PacketBuilder.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'code/PacketBuilder.hpp')
-rw-r--r--code/PacketBuilder.hpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/code/PacketBuilder.hpp b/code/PacketBuilder.hpp
deleted file mode 100644
index 2fcb737..0000000
--- a/code/PacketBuilder.hpp
+++ /dev/null
@@ -1,17 +0,0 @@
-#pragma once
-
-
-#include "Packet.hpp"
-
-class PacketBuilder {
-public:
- static Packet CHandshaking0x00(int protocolVerison, std::string address, unsigned short port, int nextState);
- static Packet CPlay0x0B(int keepAliveId);
-
- static Packet CPlay0x03(int actionId);
-
- static Packet CPlay0x00(int teleportId);
-
- static Packet CPlay0x0D(double x, double y, double z, float yaw, float pitch, bool onGround);
-};
-