1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
-
-
- #ifndef _CONSOLE_H_
- #define _CONSOLE_H_
-
- #include "Window.h"
-
-
- class Console {
- public:
-
-
-
- Console();
-
-
-
- ~Console();
-
- void setVisible(bool visible);
-
- bool isVisible();
-
- void display();
-
- void handleKeyboard(KeyboardButton key, bool pressed);
-
- void handleText(char *text, bool notFinished);
-
- private:
-
- bool mVisible;
- };
-
- #endif
|