diff options
Diffstat (limited to 'src/animationparticle.cpp')
-rw-r--r-- | src/animationparticle.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/animationparticle.cpp b/src/animationparticle.cpp index 392dc4f4..eb97637c 100644 --- a/src/animationparticle.cpp +++ b/src/animationparticle.cpp @@ -30,9 +30,10 @@ AnimationParticle::AnimationParticle(Map *map, Animation *animation): { } -AnimationParticle::AnimationParticle(Map *map, xmlNodePtr animationNode): +AnimationParticle::AnimationParticle(Map *map, xmlNodePtr animationNode, + const std::string& dyePalettes): ImageParticle(map, 0), - mAnimation(new SimpleAnimation(animationNode)) + mAnimation(new SimpleAnimation(animationNode, dyePalettes)) { } |