]> Dogcows Code - chaz/yoink/blobdiff - src/Animation.hh
further implementing runloop support
[chaz/yoink] / src / Animation.hh
index ba3860113ba180a69f5c0ae276bf455879958199..97e916d8b5f3a77ae502cd50c878b79733020355 100644 (file)
@@ -22,7 +22,6 @@
 #include <boost/shared_ptr.hpp>
 
 #include <moof/math.hh>
-#include <moof/resource.hh>
 
 
 class Animation;
@@ -36,11 +35,8 @@ typedef boost::shared_ptr<Animation> AnimationP;
  * about anything to whatever drawing context is used to render the frame.
  */
 
-class Animation : public moof::resource
+class Animation
 {
-       class impl;
-       boost::shared_ptr<impl> impl_;
-
 public:
 
        Animation(const std::string& name);
@@ -56,7 +52,11 @@ public:
        void update(moof::scalar t, moof::scalar dt);
        unsigned getFrame() const;
 
-       static bool find_path(std::string& name);
+
+private:
+
+       class impl;
+       boost::shared_ptr<impl> impl_;
 };
 
 
This page took 0.022584 seconds and 4 git commands to generate.