aboutsummaryrefslogtreecommitdiff
path: root/gob/timer.cpp
blob: adc5337fc4a078e0bdb583a81b574f5f1b349c88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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()");
}
};