X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fstage.h;h=9026d03681b7dc0fb05078216e1c92a00227de48;hb=HEAD;hp=7d4664fb2b4a2a70122abb04a5ba5e4092378c42;hpb=e34e82619af0704b465e081f257f9952972e04b2;p=libs%2Fdemoscene.git diff --git a/source/stage.h b/source/stage.h index 7d4664f..9026d03 100644 --- a/source/stage.h +++ b/source/stage.h @@ -6,6 +6,9 @@ #include "action.h" #include "demo.h" +namespace Msp { +namespace DemoScene { + class Stage { public: @@ -71,6 +74,7 @@ public: ~Stage(); virtual void add_things(Demo::ThingMap &, const std::string &); + virtual void define_actions(Sequencer &, const std::string &) { } void set_camera(const Msp::GL::Camera &); Msp::GL::Camera &get_camera() { return camera; } @@ -79,4 +83,7 @@ protected: virtual void create_pipeline(Msp::GL::View &) = 0; }; +} // namespace DemoScene +} // namespace Msp + #endif