blob: d07d9a07bc56298fcfb36a6934638ab93a65037e (
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
class cClientAction
{
public:
enum class Type
{
StatusRequest,
StatusPing,
LoginStart,
LoginConfirmation,
Animation,
LeftClick,
RightClick,
Chat,
SetLocale,
SetViewDistance,
Respawn,
StatsRequest,
Achivement,
CreativeInventory
};
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) {}
};
|