X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fanimate.h;h=30f0c527b9e952b0da433fa29e4073bd3f44f85e;hb=02613d179c906075a0ad05a3aae46b3811f322aa;hp=d386a7ac452a90cedb392cadf5c859a9f2c15e31;hpb=34051ffdca091ad3971c1382c71c5fc58b7ade0f;p=libs%2Fdemoscene.git diff --git a/source/animate.h b/source/animate.h index d386a7a..30f0c52 100644 --- a/source/animate.h +++ b/source/animate.h @@ -5,6 +5,9 @@ #include #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