summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_ArmAnim.h
blob: b8e2f21394ab0c2ded0d02a663ffb763e550cd0b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#include "cPacket.h"


class cPacket_ArmAnim : public cPacket
{
public:
	cPacket_ArmAnim()
		: m_EntityID( 0 )
		, m_Animation( 0 )
	{ m_PacketID = E_ANIMATION; }
	virtual cPacket* Clone() const { return new cPacket_ArmAnim(*this); }

	bool Parse(cSocket & a_Socket);
	bool Send(cSocket & a_Socket);

	int m_EntityID;
	char m_Animation;
	static const unsigned int c_Size = 1 + 4 + 1;
};