]> git.tdb.fi Git - libs/demoscene.git/blobdiff - source/animate.h
Add stacked flag to Animate action
[libs/demoscene.git] / source / animate.h
index d386a7ac452a90cedb392cadf5c859a9f2c15e31..30f0c527b9e952b0da433fa29e4073bd3f44f85e 100644 (file)
@@ -5,6 +5,9 @@
 #include <msp/gl/animationplayer.h>
 #include "action.h"
 
+namespace Msp {
+namespace DemoScene {
+
 class Animate: public Action
 {
 public:
@@ -21,6 +24,7 @@ public:
 private:
        Msp::GL::Placeable *target;
        const Msp::GL::Animation *anim;
+       bool stacked;
        Msp::GL::AnimationPlayer *player;
 
 public:
@@ -32,4 +36,7 @@ public:
        virtual void start(float, float);
 };
 
+} // namespace DemoScene
+} // namespace Msp
+
 #endif