the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2
3#include "ChatScreen.h"
4
5class InBedChatScreen : public ChatScreen
6{
7private:
8 static const int WAKE_UP_BUTTON = 1;
9public:
10 virtual void init();
11 virtual void removed();
12protected:
13 virtual void keyPressed(wchar_t ch, int eventKey);
14public:
15 virtual void render(int xm, int ym, float a);
16protected:
17 virtual void buttonClicked(Button *button);
18private:
19 void sendWakeUp();
20};