summaryrefslogtreecommitdiff
path: root/src/resources/spritedef.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources/spritedef.h')
-rw-r--r--src/resources/spritedef.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/resources/spritedef.h b/src/resources/spritedef.h
index dff3f2a0..fafd6a41 100644
--- a/src/resources/spritedef.h
+++ b/src/resources/spritedef.h
@@ -156,13 +156,8 @@ class SpriteDef : public Resource
*/
void substituteAction(std::string complete, std::string with);
- using ImageSets = std::map<std::string, ImageSet *>;
- using ImageSetIterator = ImageSets::iterator;
-
- using Actions = std::map<std::string, Action *>;
-
- ImageSets mImageSets;
- Actions mActions;
+ std::map<std::string, ImageSet *> mImageSets;
+ std::map<std::string, Action *> mActions;
};
#endif // SPRITEDEF_H