X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FScene.hh;h=7f36f9b897f7536446a04d522e31751582c708ad;hp=9cebc3c5034660b4debaf470a9f56e6631b012ab;hb=574af38ed616d1adfa5e6ce35f67cda1f707f89d;hpb=831f04d4bc19a390415ac0bbac4331c7a65509bc diff --git a/src/Scene.hh b/src/Scene.hh index 9cebc3c..7f36f9b 100644 --- a/src/Scene.hh +++ b/src/Scene.hh @@ -1,13 +1,11 @@ -/*] Copyright (c) 2009-2010, Charles McGarvey [************************** +/*] Copyright (c) 2009-2011, Charles McGarvey [***************************** **] All rights reserved. * -* vi:ts=4 sw=4 tw=75 -* * Distributable under the terms and conditions of the 2-clause BSD license; * see the file COPYING for a complete text of the license. * -**************************************************************************/ +*****************************************************************************/ #ifndef _SCENE_HH_ #define _SCENE_HH_ @@ -19,21 +17,19 @@ #include #include -#include #include -class Character; - - +// forward declarations namespace moof { class settings; } +class Character; class Scene; typedef boost::shared_ptr SceneP; -class Scene : public moof::cullable, public moof::drawable, public moof::resource +class Scene : public moof::cullable, public moof::drawable { class impl; boost::shared_ptr impl_; @@ -57,8 +53,6 @@ public: bool castRay(const moof::ray<2>& ray, std::list::contact>& hits) const; bool checkForCollision(Character& character); - - static bool find_path(std::string& name); };