aboutsummaryrefslogtreecommitdiff
path: root/gob/timer.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2005-04-05 15:07:40 +0000
committerEugene Sandulenko2005-04-05 15:07:40 +0000
commit1758c5b211a39c29a193546348e7cc6e7bc2e8c9 (patch)
tree225d803c62c79d6a6d95ada0096e8832e9e65044 /gob/timer.cpp
parentb399a052f1a60df4731aa15d330e1c0b759ed857 (diff)
downloadscummvm-rg350-1758c5b211a39c29a193546348e7cc6e7bc2e8c9.tar.gz
scummvm-rg350-1758c5b211a39c29a193546348e7cc6e7bc2e8c9.tar.bz2
scummvm-rg350-1758c5b211a39c29a193546348e7cc6e7bc2e8c9.zip
Initial checking of Gob engine
svn-id: r17388
Diffstat (limited to 'gob/timer.cpp')
-rw-r--r--gob/timer.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/gob/timer.cpp b/gob/timer.cpp
new file mode 100644
index 0000000000..adc5337fc4
--- /dev/null
+++ b/gob/timer.cpp
@@ -0,0 +1,21 @@
+/*
+** Gobliiins 1
+** Original game by CoktelVision
+**
+** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
+**
+*/
+#include "gob/gob.h"
+#include "gob/global.h"
+#include "gob/debug.h"
+#include "gob/sound.h"
+namespace Gob {
+
+void timer_enableTimer() {
+ debug(0, "STUB: timer_enableTimer()");
+}
+
+void timer_disableTimer() {
+ debug(0, "STUB: timer_disableTimer()");
+}
+};