]> Dogcows Code - chaz/yoink/blobdiff - src/Scene.hh
minor refactoring and state progress
[chaz/yoink] / src / Scene.hh
index ca96aeaca15d93d5053919afa98d5cbd5b38822b..b858c642abde7cc28b156eafd83956511fb6cb5a 100644 (file)
 #include <Moof/Resource.hh>
 
 
+class Character;
+
+
 class Scene;
 typedef boost::shared_ptr<Scene> SceneP;
 
 class Scene : public Mf::Cullable, public Mf::Drawable, public Mf::Resource
 {
        class Impl;
-       boost::shared_ptr<Impl> impl_;
+       boost::shared_ptr<Impl> mImpl;
 
 public:
 
@@ -58,6 +61,8 @@ public:
        void draw(Mf::Scalar alpha) const;
        void drawIfVisible(Mf::Scalar alpha, const Mf::Frustum& frustum) const;
 
+       bool checkForCollision(Character& character);
+
        static std::string getPath(const std::string& name);
 };
 
This page took 0.019097 seconds and 4 git commands to generate.