mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-23 22:23:38 +00:00
8 lines
166 B
C++
8 lines
166 B
C++
#pragma once
|
|
|
|
class Control {
|
|
public:
|
|
static const int MoveControlFlag = 1;
|
|
static const int LookControlFlag = 2;
|
|
static const int JumpControlFlag = 4;
|
|
}; |