the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2#include "Screen.h"
3
4class ErrorScreen : public Screen
5{
6private:
7 wstring title, message;
8public:
9 ErrorScreen(const wstring& title, const wstring& message);
10 virtual void init();
11 virtual void render(int xm, int ym, float a);
12protected:
13 virtual void keyPressed(wchar_t eventCharacter, int eventKey);
14};