#ifndef CONTROL_H #define CONTROL_H #include "client/input/Keys.h" #include "client/input/MouseButtons.h" struct Control final { void tick(); Keys keys; MouseButtons buttons; }; #endif