summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_Respawn.h
blob: 302dbe25ef1eebbb6d368c5f7bc1fb680b092714 (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
29
30
31
32
33
34
35
36
37

#pragma once

#include "cPacket.h"

#include "cPacket_Login.h"





class cPacket_Respawn : public cPacket
{
public:
	cPacket_Respawn()
		: m_Dimension( 0 )
		, m_Difficulty( 0 )
		, m_CreativeMode( 0 )
		, m_WorldHeight( 0 )
		, m_LevelType( cPacket_Login::LEVEL_TYPE_DEFAULT )
	{ m_PacketID = E_RESPAWN; }
	
	virtual cPacket* Clone() const { return new cPacket_Respawn( *this ); }

	virtual int Parse(const char * a_Data, int a_Size) override;
	virtual void Serialize(AString & a_Data) const override;

	int m_Dimension;
	char m_Difficulty;
	char m_CreativeMode;
	short m_WorldHeight;
	AString m_LevelType;
};