#pragma once #include "led.h" #include "buttons.h" #include "vector" #include "game.h" class c_simpleLed : public c_game { std::vector *buttonlist; public: c_simpleLed(e_ledcolor gamecolor): c_game{simpleled, gamecolor} {} void runGame(void); bool initGame(void); void resetGame(void); };