aboutsummaryrefslogtreecommitdiff
path: root/engines/cge2/events.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cge2/events.cpp')
-rw-r--r--engines/cge2/events.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/engines/cge2/events.cpp b/engines/cge2/events.cpp
index 3675909d74..670ea61c93 100644
--- a/engines/cge2/events.cpp
+++ b/engines/cge2/events.cpp
@@ -36,6 +36,30 @@
#include "cge2/cge2_main.h"
namespace CGE2 {
+
+/*----------------- KEYBOARD interface -----------------*/
+
+Keyboard::Keyboard(CGE2Engine *vm) : _client(NULL), _vm(vm) {
+ warning("STUB: Keyboard::Keyboard() - Recheck the whole implementation!!!");
+}
+
+Keyboard::~Keyboard() {
+}
+
+Sprite *Keyboard::setClient(Sprite *spr) {
+ warning("STUB: Keyboard::setClient()");
+ return spr;
+}
+
+bool Keyboard::getKey(Common::Event &event) {
+ warning("STUB: Keyboard::getKey()");
+ return false;
+}
+
+void Keyboard::newKeyboard(Common::Event &event) {
+ warning("STUB: Keyboard::newKeyboard()");
+}
+
/*----------------- MOUSE interface -----------------*/
Mouse::Mouse(CGE2Engine *vm) : Sprite(vm), _busy(NULL), _hold(NULL), _hx(0), _vm(vm) {