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