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

#include "system.h"

class Game;

class MenuSystem : public System {
public:

  static constexpr SystemKey Key = SystemKey::Menu;

  explicit MenuSystem(Game& game) : game_(game) {}

private:

  Game& game_;
};

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