the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 25 lines 459 B view raw
1#pragma once 2#include "Screen.h" 3using namespace std; 4 5class ChatScreen : public Screen 6{ 7protected: 8 wstring message; 9private: 10 int frame; 11 12public: 13 ChatScreen(); //4J added 14 virtual void init(); 15 virtual void removed(); 16 virtual void tick(); 17private: 18 static const wstring allowedChars; 19protected: 20 void keyPressed(wchar_t ch, int eventKey); 21public: 22 void render(int xm, int ym, float a); 23protected: 24 void mouseClicked(int x, int y, int buttonNum); 25};