scummvm/gob/timer.cpp
Eugene Sandulenko 1758c5b211 Initial checking of Gob engine
svn-id: r17388
2005-04-05 15:07:40 +00:00

22 lines
367 B
C++

/*
** 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()");
}
};