Initial commit

This commit is contained in:
Red Duck 2022-04-07 16:50:51 +03:00
commit 2193fa6696
390 changed files with 138391 additions and 0 deletions

17
headers/controls.h Normal file
View file

@ -0,0 +1,17 @@
class Controls
{
public:
bool FORWARD = false;
bool BACKWARD = false;
bool LEFT = false;
bool RIGHT = false;
bool JUMP = false;
bool SNEAK = false;
bool SPRINT = false;
bool ATTACK = false;
double ATTACK_PITCH = 0;
double ATTACK_YAW = 0;
bool USE = false;
double USE_PITCH = 0;
double USE_YAW = 0;
};