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_EntityLook.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'source/packets/cPacket_EntityLook.h') diff --git a/source/packets/cPacket_EntityLook.h b/source/packets/cPacket_EntityLook.h index 7f2864d46..463faccda 100644 --- a/source/packets/cPacket_EntityLook.h +++ b/source/packets/cPacket_EntityLook.h @@ -43,14 +43,17 @@ public: cPacket_EntityHeadLook(void) : m_UniqueID( 0 ) , m_HeadYaw( 0 ) - { m_PacketID = E_ENT_LOOK; } + { + m_PacketID = E_ENT_LOOK; + } + cPacket_EntityHeadLook(const cEntity & a_Entity); virtual cPacket * Clone(void) const { return new cPacket_EntityHeadLook(*this); } virtual void Serialize(AString & a_Data) const override; - int m_UniqueID; + int m_UniqueID; char m_HeadYaw; }; -- cgit v1.2.3