X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fbeatcounter.h;h=98af61b025bb9b12d0c31eb5810ed4726c7959a1;hb=02613d179c906075a0ad05a3aae46b3811f322aa;hp=84e8dd1bac34f3cf9bf6d2b18118a8e631a78c57;hpb=184dc3f14feab183bcd84eca40f89c143ecbe41f;p=libs%2Fdemoscene.git diff --git a/source/beatcounter.h b/source/beatcounter.h index 84e8dd1..98af61b 100644 --- a/source/beatcounter.h +++ b/source/beatcounter.h @@ -8,6 +8,9 @@ #include "resources.h" #include "action.h" +namespace Msp { +namespace DemoScene { + class BeatCounter: public Msp::GL::Renderable, public Action { private: @@ -17,9 +20,14 @@ private: public: BeatCounter(Resources &); + virtual void validate() const { } + virtual void beat(int); virtual void render(Msp::GL::Renderer &, const Msp::GL::Tag &) const; }; +} // namespace DemoScene +} // namespace Msp + #endif