aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/animation.h
diff options
context:
space:
mode:
authorStrangerke2013-10-14 22:41:50 +0200
committerStrangerke2013-10-14 22:43:12 +0200
commit2c09933641cf2d8fb2a8134746a2fcbef1534121 (patch)
treeb203b98c9d397542140a4ab07ea9b1478f9b5f8e /engines/avalanche/animation.h
parentcb5424376399e8f79a18800446916f601e02721c (diff)
downloadscummvm-rg350-2c09933641cf2d8fb2a8134746a2fcbef1534121.tar.gz
scummvm-rg350-2c09933641cf2d8fb2a8134746a2fcbef1534121.tar.bz2
scummvm-rg350-2c09933641cf2d8fb2a8134746a2fcbef1534121.zip
AVALANCHE: Remove StatType, reduce verbosity some more
Diffstat (limited to 'engines/avalanche/animation.h')
-rw-r--r--engines/avalanche/animation.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/avalanche/animation.h b/engines/avalanche/animation.h
index ac247b8256..297f9110a8 100644
--- a/engines/avalanche/animation.h
+++ b/engines/avalanche/animation.h
@@ -40,19 +40,19 @@ enum Direction {
kDirStopped, kDirNone = 177
};
-struct StatType {
+class AnimationType {
+public:
+ SpriteInfo _info;
+
+ // Former Stat structure
Common::String _name; // Name of character.
Common::String _comment; // Comment.
byte _frameNum; // Number of pictures.
byte _seq; // How many in one stride.
Color _fgBubbleCol, _bgBubbleCol; // Foreground & background bubble colors.
byte _acciNum; // The number according to Acci. (1=Avvy, etc.)
-};
+ //
-class AnimationType {
-public:
- SpriteInfo _info;
- StatType _stat; // Vital statistics.
Direction _facingDir;
byte _stepNum;
int16 _x, _y; // Current xy coords.