diff options
-rw-r--r-- | src/spritecache.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/spritecache.h b/src/spritecache.h index 1d7c5d3b1..de277d212 100644 --- a/src/spritecache.h +++ b/src/spritecache.h @@ -7,12 +7,13 @@ #include "gfx_type.h" +/** Data structure describing a sprite. */ struct Sprite { - byte height; - uint16 width; - int16 x_offs; - int16 y_offs; - byte data[]; + byte height; ///< Height of the sprite. + uint16 width; ///< Width of the sprite. + int16 x_offs; ///< Number of pixels to shift the sprite to the right. + int16 y_offs; ///< Number of pixels to shift the sprite downwards. + byte data[]; ///< Sprite data. }; extern uint _sprite_cache_size; |