mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-24 10:45:46 +00:00
1758c5b211
svn-id: r17388
21 lines
325 B
C++
21 lines
325 B
C++
/*
|
|
** Gobliiins 1
|
|
** Original game by CoktelVision
|
|
**
|
|
** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
|
|
**
|
|
*/
|
|
#ifndef __INIT_H
|
|
#define __INIT_H
|
|
|
|
namespace Gob {
|
|
|
|
void init_findBestCfg(void);
|
|
void init_soundVideo(int32 smallHeapSize, int16 flag);
|
|
|
|
void init_initGame(char *totFile);
|
|
|
|
} // End of namespace Gob
|
|
|
|
#endif
|