diff options
Diffstat (limited to 'src/resources/spritedef.h')
-rw-r--r-- | src/resources/spritedef.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/resources/spritedef.h b/src/resources/spritedef.h index 35b066296..e59e4bd1f 100644 --- a/src/resources/spritedef.h +++ b/src/resources/spritedef.h @@ -25,13 +25,12 @@ #include "resources/resource.h" +#include "utils/stringvector.h" #include "utils/xml.h" #include <list> #include <map> #include <set> -#include <string> -#include <vector> class Action; class Animation; @@ -60,7 +59,7 @@ struct SpriteDisplay std::string image; std::string floor; std::vector<SpriteReference*> sprites; - std::vector<std::string> particles; + StringVect particles; }; typedef std::vector<SpriteReference*>::const_iterator SpriteRefs; |