aboutsummaryrefslogtreecommitdiff
path: root/engines/prince/hero.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/prince/hero.h')
-rw-r--r--engines/prince/hero.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/prince/hero.h b/engines/prince/hero.h
index 36856ea921..211eed8a3a 100644
--- a/engines/prince/hero.h
+++ b/engines/prince/hero.h
@@ -39,6 +39,8 @@ public:
static const int16 kMaxPicWidth = 1280;
static const int16 kZoomBitmapWidth = kMaxPicWidth / kZoomStep;
+ static const uint8 kShadowColor = 191;
+
enum State {
STAY = 0,
TURN = 1,
@@ -108,6 +110,7 @@ public:
void checkNak();
Graphics::Surface *zoomSprite(Graphics::Surface *heroFrame);
void showHeroAnimFrame();
+ Graphics::Surface *showHeroShadow(Graphics::Surface *heroFrame);
void setShadowScale(int32 shadowScale);
void specialAnim();
void getState();
@@ -160,7 +163,7 @@ public:
Animation *_shadowBitmap;
uint32 _moveDelay;
- uint32 _shadMinus; //??
+ uint32 _shadMinus;
};
}