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 DeathScreen : public Screen
5{
6public:
7 virtual void init();
8protected:
9 virtual void keyPressed(char eventCharacter, int eventKey);
10 virtual void buttonClicked(Button *button);
11public:
12 virtual void render(int xm, int ym, float a);
13 virtual bool isPauseScreen();
14};