summaryrefslogtreecommitdiff
path: root/src/resources/spritedef.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-04-20 16:39:35 +0300
committerAndrei Karas <akaras@inbox.ru>2013-04-20 16:39:35 +0300
commit9753cdbb33468148e1f690d67cb631d661e62027 (patch)
tree96c073cc948e9d8483676171a2fe1cb274fed0a4 /src/resources/spritedef.h
parentab9405f511303d490a8f966d1c1abe7f94bf0633 (diff)
downloadplus-9753cdbb33468148e1f690d67cb631d661e62027.tar.gz
plus-9753cdbb33468148e1f690d67cb631d661e62027.tar.bz2
plus-9753cdbb33468148e1f690d67cb631d661e62027.tar.xz
plus-9753cdbb33468148e1f690d67cb631d661e62027.zip
fix style in resources directory.
Diffstat (limited to 'src/resources/spritedef.h')
-rw-r--r--src/resources/spritedef.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/resources/spritedef.h b/src/resources/spritedef.h
index 08cb0d2b9..2da538baf 100644
--- a/src/resources/spritedef.h
+++ b/src/resources/spritedef.h
@@ -57,6 +57,14 @@ struct SpriteReference final
struct SpriteDisplay final
{
+ SpriteDisplay() :
+ image(),
+ floor(),
+ sprites(),
+ particles()
+ {
+ }
+
std::string image;
std::string floor;
std::vector<SpriteReference*> sprites;
@@ -150,7 +158,10 @@ class SpriteDef final : public Resource
* Constructor.
*/
SpriteDef() :
- Resource()
+ Resource(),
+ mImageSets(),
+ mActions(),
+ mProcessedFiles()
{ }
/**