Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
324 B · 14 lines
C
at main
1234567891011121314#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);};