Control.h 204 B

1234567891011121314
  1. #ifndef CONTROL_H
  2. #define CONTROL_H
  3. #include "client/input/Keys.h"
  4. #include "client/input/MouseButtons.h"
  5. struct Control final {
  6. void tick();
  7. Keys keys;
  8. MouseButtons buttons;
  9. };
  10. #endif