Files
2026-03-01 12:16:08 +08:00

14 lines
324 B
C++

#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);
};