summaryrefslogtreecommitdiffstats
path: root/src/ClientAction.h
blob: 1844d14c67179d80bd7a224426fb9b491755cb02 (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

#pragma once

class cClientAction
{
public:
	enum class Type
	{
		StatusRequest,
		StatusPing,
		LoginStart,
		LoginConfirmation,
		Animation,
		LeftClick,
		RightClick,
		Chat,
		SetLocale,
		SetViewDistance,
		Respawn,
		StatsRequest,
		Achivement,
		CreativeInventory,
		SetProtocolVersion
	};

	cClientAction(Type a_Type) : m_Type(a_Type) {}

	Type GetType() const { return m_Type; }

private:
	Type m_Type;
};

class cSimpleAction : public cClientAction
{
public:
	cSimpleAction(Type a_type) : cClientAction(a_type) {}
};