summary refs log tree commit diff stats
path: root/src/input_system.h
blob: 4e5bb229bf29d3ff4a66d76cf607f7b29ffd4d0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef INPUT_SYSTEM_H_47764575
#define INPUT_SYSTEM_H_47764575

#include "system.h"

class Game;

class InputSystem : public System {
public:

  static constexpr SystemKey Key = SystemKey::Input;

  InputSystem(Game& game) : game_(game) {}

  void tick(double dt) override;

private:

  Game& game_;
};

#endif /* end of include guard: INPUT_SYSTEM_H_47764575 */