summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_Respawn.h
blob: b05f84614a985ef7c60ce56a17faf0c8ba020a3f (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
38
39
40

#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(256)
		, m_LevelType( cPacket_Login::LEVEL_TYPE_DEFAULT )
	{
		m_PacketID = E_RESPAWN;
	}
	
	virtual cPacket * Clone() const { return new cPacket_Respawn( *this ); }

	virtual int  Parse(cByteBuffer & a_Buffer) override;
	virtual void Serialize(AString & a_Data) const override;

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