You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
367 B
C++
17 lines
367 B
C++
#pragma once
|
|
#include "screen.h"
|
|
#include "cursor.h"
|
|
|
|
//Starting menu
|
|
class StartScreen : public Screen {
|
|
public:
|
|
Cursor<std::string> menu;
|
|
std::map<std::string, ALLEGRO_BITMAP*> sprites;
|
|
|
|
StartScreen(std::map<std::string, ALLEGRO_BITMAP*> _sprites);
|
|
|
|
void run(ALLEGRO_FONT* font);
|
|
void redraw(ALLEGRO_FONT* font);
|
|
void back();
|
|
void cont();
|
|
}; |