mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-24 10:45:46 +00:00
1758c5b211
svn-id: r17388
22 lines
367 B
C++
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()");
|
|
}
|
|
};
|