#pragma once #include "screen.h" #include "cursor.h" //Starting menu class StartScreen : public Screen { public: Cursor menu; std::map sprites; StartScreen(std::map _sprites); void reset(); void run(ALLEGRO_FONT* font); void redraw(ALLEGRO_FONT* font); void back(); void cont(); };