aboutsummaryrefslogtreecommitdiff
path: root/engines/draci/sprite.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/draci/sprite.h')
-rw-r--r--engines/draci/sprite.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/draci/sprite.h b/engines/draci/sprite.h
index 0bd825cf14..18ea899641 100644
--- a/engines/draci/sprite.h
+++ b/engines/draci/sprite.h
@@ -56,10 +56,10 @@ public:
void draw(Surface *surface) const;
- byte *_data;
- uint16 _width;
- uint16 _height;
- uint16 _x, _y;
+ byte *_data; //!< Pointer to a buffer containing raw sprite data (row-wise)
+ uint16 _width; //!< Width of the sprite
+ uint16 _height; //!< Height of the sprite
+ uint16 _x, _y; //!< Sprite coordinates
};