mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-23 01:58:13 +05:00
9 lines
157 B
C++
9 lines
157 B
C++
#pragma once
|
|
|
|
class Control
|
|
{
|
|
public:
|
|
static const int MoveControlFlag = 1;
|
|
static const int LookControlFlag = 2;
|
|
static const int JumpControlFlag = 4;
|
|
}; |