summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_UseEntity.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/packets/cPacket_UseEntity.cpp')
-rw-r--r--source/packets/cPacket_UseEntity.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/source/packets/cPacket_UseEntity.cpp b/source/packets/cPacket_UseEntity.cpp
deleted file mode 100644
index 9ecb3bffc..000000000
--- a/source/packets/cPacket_UseEntity.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-
-#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
-
-#include "cPacket_UseEntity.h"
-
-
-
-
-
-int cPacket_UseEntity::Parse(cByteBuffer & a_Buffer)
-{
- int TotalBytes = 0;
- HANDLE_PACKET_READ(ReadBEInt, m_SourceEntityID, TotalBytes);
- HANDLE_PACKET_READ(ReadBEInt, m_TargetEntityID, TotalBytes);
- HANDLE_PACKET_READ(ReadBool, m_IsLeftClick, TotalBytes);
- return TotalBytes;
-}
-
-
-
-