X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2FAnimation.hh;h=ba3860113ba180a69f5c0ae276bf455879958199;hb=85783316365181491a3e3c0c63659972477cebba;hp=ac00679809b7da11931aef0d29e393fe1b59417e;hpb=837bae9f2bf7b25e1d3d2625eeaf39c1d2f48827;p=chaz%2Fyoink diff --git a/src/Animation.hh b/src/Animation.hh index ac00679..ba38601 100644 --- a/src/Animation.hh +++ b/src/Animation.hh @@ -21,8 +21,8 @@ #include -#include -#include +#include +#include class Animation; @@ -36,10 +36,10 @@ typedef boost::shared_ptr AnimationP; * about anything to whatever drawing context is used to render the frame. */ -class Animation : public Mf::Resource +class Animation : public moof::resource { - class Impl; - boost::shared_ptr mImpl; + class impl; + boost::shared_ptr impl_; public: @@ -53,10 +53,10 @@ public: void startSequence(const std::string& name); - void update(Mf::Scalar t, Mf::Scalar dt); + void update(moof::scalar t, moof::scalar dt); unsigned getFrame() const; - static std::string getPath(const std::string& name); + static bool find_path(std::string& name); };