diff options
Diffstat (limited to 'engines/mads/scene_data.h')
-rw-r--r-- | engines/mads/scene_data.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/engines/mads/scene_data.h b/engines/mads/scene_data.h index 23eee3403f..87fddfedd7 100644 --- a/engines/mads/scene_data.h +++ b/engines/mads/scene_data.h @@ -130,6 +130,14 @@ public: void deleteEntry(int index); }; +class SpriteSets: public Common::Array<SpriteAsset *> { +public: + /** + * Add a sprite asset to the list + */ + int add(SpriteAsset *asset, int idx = 0); +}; + class TextDisplay { public: bool _active; |