mirror of
https://git.neolegacy.dev/pieeebot/cafeberry.git
synced 2026-09-23 12:12:27 +00:00
9 lines
165 B
C++
9 lines
165 B
C++
#pragma once
|
|
|
|
class Control
|
|
{
|
|
public:
|
|
static const int MoveControlFlag = 1;
|
|
static const int LookControlFlag = 2;
|
|
static const int JumpControlFlag = 4;
|
|
}; |