From 427e582d5fcbd5025a81a4e89ccada47877ccc64 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Sun, 19 Aug 2012 19:42:32 +0000 Subject: Almost all packets' handling is now rewritten not to use cPacket descendants elsewhere than in cClientHandle. git-svn-id: http://mc-server.googlecode.com/svn/trunk@761 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/packets/cPacket_UseEntity.h | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) (limited to 'source/packets/cPacket_UseEntity.h') diff --git a/source/packets/cPacket_UseEntity.h b/source/packets/cPacket_UseEntity.h index 799122bf9..ff33ccd93 100644 --- a/source/packets/cPacket_UseEntity.h +++ b/source/packets/cPacket_UseEntity.h @@ -7,23 +7,25 @@ -class cPacket_UseEntity : public cPacket +class cPacket_UseEntity : + public cPacket { public: cPacket_UseEntity() - : m_UniqueID( 0 ) - , m_TargetID( 0 ) - , m_bLeftClick( false ) - { m_PacketID = E_USE_ENTITY; } - virtual cPacket* Clone() const { return new cPacket_UseEntity(*this); } + : 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_UniqueID; - int m_TargetID; - bool m_bLeftClick; - - static const unsigned int c_Size = 1 + 4 + 4 + 1; + int m_SourceEntityID; + int m_TargetEntityID; + bool m_IsLeftClick; }; -- cgit v1.2.3