mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 12:03:39 +00:00
14 lines
342 B
C++
14 lines
342 B
C++
#pragma once
|
|
#include "../Screen.h"
|
|
|
|
class ErrorScreen : public Screen
|
|
{
|
|
private:
|
|
std::wstring title, message;
|
|
public:
|
|
ErrorScreen(const std::wstring& title, const std::wstring& message);
|
|
virtual void init();
|
|
virtual void render(int xm, int ym, float a);
|
|
protected:
|
|
virtual void keyPressed(wchar_t eventCharacter, int eventKey);
|
|
}; |