the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 28 lines 487 B view raw
1#pragma once 2#include "Screen.h" 3class Random; 4class Button; 5using namespace std; 6 7class TitleScreen : public Screen 8{ 9private: 10 static Random *random; 11 12 float vo; 13 14 wstring splash; 15 Button *multiplayerButton; 16 17public: 18 TitleScreen(); 19 virtual void tick(); 20protected: 21 virtual void keyPressed(wchar_t eventCharacter, int eventKey); 22public: 23 virtual void init(); 24protected: 25 virtual void buttonClicked(Button *button); 26public: 27 virtual void render(int xm, int ym, float a); 28};