summaryrefslogtreecommitdiff
path: root/src/resources/emotedb.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources/emotedb.h')
-rw-r--r--src/resources/emotedb.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/resources/emotedb.h b/src/resources/emotedb.h
index f27b45220..24ceb40db 100644
--- a/src/resources/emotedb.h
+++ b/src/resources/emotedb.h
@@ -22,10 +22,10 @@
#ifndef EMOTE_DB_H
#define EMOTE_DB_H
+#include "utils/stringvector.h"
+
#include <list>
#include <map>
-#include <string>
-#include <vector>
class AnimatedSprite;
@@ -38,7 +38,7 @@ struct EmoteSprite
struct EmoteInfo
{
std::list<EmoteSprite*> sprites;
- std::vector<std::string> particles;
+ StringVect particles;
};
typedef std::map<int, EmoteInfo*> EmoteInfos;