blob: 84ff667f65ec6fc9a6d55f274dd6b6eea731384c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include "Screen.h"
class ErrorScreen : public Screen
{
private:
wstring title, message;
public:
ErrorScreen(const wstring& title, const wstring& message);
virtual void init();
virtual void render(int xm, int ym, float a);
protected:
virtual void keyPressed(wchar_t eventCharacter, int eventKey);
};
|