From 3c505f6f7fa5d4fab7c2a2864a45c8f5d0b4d329 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sat, 13 Mar 2021 07:11:56 -0500 Subject: Created MenuSystem It currently has nothing in it. #7 --- src/menu_system.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/menu_system.h (limited to 'src/menu_system.h') 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 @@ +#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 */ -- cgit 1.4.1