summary refs log tree commit diff stats
path: root/src/menu_system.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/menu_system.h')
-rw-r--r--src/menu_system.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/menu_system.h b/src/menu_system.h new file mode 100644 index 0000000..46963b2 --- /dev/null +++ b/src/menu_system.h
@@ -0,0 +1,20 @@
1#ifndef MENU_SYSTEM_H_205861EC
2#define MENU_SYSTEM_H_205861EC
3
4#include "system.h"
5
6class Game;
7
8class MenuSystem : public System {
9public:
10
11 static constexpr SystemKey Key = SystemKey::Menu;
12
13 explicit MenuSystem(Game& game) : game_(game) {}
14
15private:
16
17 Game& game_;
18};
19
20#endif /* end of include guard: MENU_SYSTEM_H_205861EC */