20 lines
368 B
C++
20 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
|