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++

#pragma once
#include "screen.h"
#include "cursor.h"
#include <string>
//Screen to display help menu
class HelpScreen : public Screen {
public:
Cursor<std::string> menu;
HelpScreen();
void run(ALLEGRO_FONT* font);
void redraw(ALLEGRO_FONT* font);
void back();
void cont();
};