summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_UseEntity.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/packets/cPacket_UseEntity.h')
-rw-r--r--source/packets/cPacket_UseEntity.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/source/packets/cPacket_UseEntity.h b/source/packets/cPacket_UseEntity.h
deleted file mode 100644
index ff33ccd93..000000000
--- a/source/packets/cPacket_UseEntity.h
+++ /dev/null
@@ -1,33 +0,0 @@
-
-#pragma once
-
-#include "cPacket.h"
-
-
-
-
-
-class cPacket_UseEntity :
- public cPacket
-{
-public:
- cPacket_UseEntity()
- : m_SourceEntityID(0)
- , m_TargetEntityID(0)
- , m_IsLeftClick(false)
- {
- m_PacketID = E_USE_ENTITY;
- }
-
- virtual cPacket * Clone() const { return new cPacket_UseEntity(*this); }
-
- virtual int Parse(cByteBuffer & a_Buffer) override;
-
- int m_SourceEntityID;
- int m_TargetEntityID;
- bool m_IsLeftClick;
-};
-
-
-
-