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
290 B
C
17 lines
290 B
C
6 years ago
|
#pragma once
|
||
|
#include "screen.h"
|
||
|
#include "cursor.h"
|
||
|
#include <string>
|
||
|
|
||
6 years ago
|
//Screen to display help menu
|
||
6 years ago
|
class HelpScreen : public Screen {
|
||
|
public:
|
||
|
Cursor<std::string> menu;
|
||
|
|
||
|
HelpScreen();
|
||
|
|
||
|
void run(ALLEGRO_FONT* font);
|
||
|
void redraw(ALLEGRO_FONT* font);
|
||
|
void back();
|
||
|
void cont();
|
||
|
};
|