blob: 6c86fadfbde76471b83ab60ef92e2424f3c04259 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#pragma once
#include "cPacket.h"
class cPacket_UpdateSign : public cPacket
{
public:
cPacket_UpdateSign()
: m_PosX( 0 )
, m_PosY( 0 )
, m_PosZ( 0 )
{ m_PacketID = E_UPDATE_SIGN; }
virtual cPacket* Clone() const { return new cPacket_UpdateSign( *this ); }
bool Parse( cSocket & a_Socket );
bool Send( cSocket & a_Socket );
int m_PosX;
short m_PosY;
int m_PosZ;
std::string m_Line1;
std::string m_Line2;
std::string m_Line3;
std::string m_Line4;
static const unsigned int c_Size = 1 + 4 + 2 + 4 + 2 + 2 + 2 + 2; // minimum size
};
|