summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_Login.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--source/packets/cPacket_Login.cpp34
1 files changed, 0 insertions, 34 deletions
diff --git a/source/packets/cPacket_Login.cpp b/source/packets/cPacket_Login.cpp
deleted file mode 100644
index 017227071..000000000
--- a/source/packets/cPacket_Login.cpp
+++ /dev/null
@@ -1,34 +0,0 @@
-
-#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
-
-#include "cPacket_Login.h"
-
-
-
-
-
-const char * cPacket_Login::LEVEL_TYPE_DEFAULT = "DEFAULT";
-const char * cPacket_Login::LEVEL_TYPE_SUPERFLAT = "SUPERFLAT";
-
-
-
-
-
-int cPacket_Login::Parse(cByteBuffer & a_Buffer)
-{
- int TotalBytes = 0;
- m_Username.clear();
- HANDLE_PACKET_READ(ReadBEInt, m_ProtocolVersion, TotalBytes);
- HANDLE_PACKET_READ(ReadBEUTF16String16, m_Username, TotalBytes);
- HANDLE_PACKET_READ(ReadBEUTF16String16, m_LevelType, TotalBytes);
- HANDLE_PACKET_READ(ReadBEInt, m_ServerMode, TotalBytes);
- HANDLE_PACKET_READ(ReadBEInt, m_Dimension, TotalBytes);
- HANDLE_PACKET_READ(ReadChar, m_Difficulty, TotalBytes);
- HANDLE_PACKET_READ(ReadByte, m_WorldHeight, TotalBytes);
- HANDLE_PACKET_READ(ReadByte, m_MaxPlayers, TotalBytes);
- return TotalBytes;
-}
-
-
-
-