mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-28 12:46:56 +00:00
21 lines
368 B
C++
21 lines
368 B
C++
|
/*
|
||
|
** Gobliiins 1
|
||
|
** Original game by CoktelVision
|
||
|
**
|
||
|
** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
|
||
|
**
|
||
|
*/
|
||
|
#include "gob/gob.h"
|
||
|
#include "gob/video.h"
|
||
|
#include "gob/anim.h"
|
||
|
|
||
|
namespace Gob {
|
||
|
|
||
|
int16 anim_animAreaLeft;
|
||
|
int16 anim_animAreaTop;
|
||
|
int16 anim_animAreaWidth;
|
||
|
int16 anim_animAreaHeight;
|
||
|
SurfaceDesc *anim_underAnimSurf = 0;
|
||
|
|
||
|
} // End of namespace Gob
|