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.
393 B · 20 lines
C
at main
1234567891011121314151617181920#pragma once
#include "ChatScreen.h"
class InBedChatScreen : public ChatScreen{private: static const int WAKE_UP_BUTTON = 1;public: virtual void init(); virtual void removed();protected: virtual void keyPressed(wchar_t ch, int eventKey);public: virtual void render(int xm, int ym, float a);protected: virtual void buttonClicked(Button *button);private: void sendWakeUp();};