X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FAnimation.hh;fp=src%2FAnimation.hh;h=ba3860113ba180a69f5c0ae276bf455879958199;hp=d8651dddf76a2032c0912584a60722d583202c79;hb=831f04d4bc19a390415ac0bbac4331c7a65509bc;hpb=299af4f2047e767e5d79501c26444473bda64c64 diff --git a/src/Animation.hh b/src/Animation.hh index d8651dd..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 bool getPath(std::string& name); + static bool find_path(std::string& name); };