diff options
Diffstat (limited to 'src/resources/spritedef.h')
-rw-r--r-- | src/resources/spritedef.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/resources/spritedef.h b/src/resources/spritedef.h index 424d88869..475ab2e25 100644 --- a/src/resources/spritedef.h +++ b/src/resources/spritedef.h @@ -30,6 +30,7 @@ #include <list> #include <map> #include <string> +#include <vector> class Action; class ImageSet; @@ -56,11 +57,11 @@ struct SpriteDisplay { std::string image; std::string floor; - std::list<SpriteReference*> sprites; - std::list<std::string> particles; + std::vector<SpriteReference*> sprites; + std::vector<std::string> particles; }; -typedef std::list<SpriteReference*>::const_iterator SpriteRefs; +typedef std::vector<SpriteReference*>::const_iterator SpriteRefs; /* * Remember those are the main action. |