Add CVerifiedUserCmd class.
Signed-off-by: aixxe <me@aixxe.net>
This commit is contained in:
parent
04fd052795
commit
677de31665
|
@ -1,5 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
typedef unsigned long CRC32_t;
|
||||||
|
|
||||||
class CUserCmd {
|
class CUserCmd {
|
||||||
virtual ~CUserCmd() {};
|
virtual ~CUserCmd() {};
|
||||||
|
|
||||||
|
@ -19,3 +21,9 @@ class CUserCmd {
|
||||||
short mousedy;
|
short mousedy;
|
||||||
bool hasbeenpredicted;
|
bool hasbeenpredicted;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class CVerifiedUserCmd {
|
||||||
|
public:
|
||||||
|
CUserCmd m_cmd;
|
||||||
|
CRC32_t m_crc;
|
||||||
|
};
|
Loading…
Reference in New Issue