X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FMoof%2FScene.hh;fp=src%2Fscene.hh;h=66a54a97936c22c543203780b9a110cb076c9261;hp=2938db88e1525583f6e7df86deff898715caa6f7;hb=c2321281bf12a7efaedde930422c7ddbc92080d4;hpb=87bc17e55b0c1dc73ecc66df856d3f08fd7a7724 diff --git a/src/scene.hh b/src/Moof/Scene.hh similarity index 84% rename from src/scene.hh rename to src/Moof/Scene.hh index 2938db8..66a54a9 100644 --- a/src/scene.hh +++ b/src/Moof/Scene.hh @@ -26,37 +26,38 @@ *******************************************************************************/ -#ifndef _SCENE_HH_ -#define _SCENE_HH_ +#ifndef _MOOF_SCENE_HH_ +#define _MOOF_SCENE_HH_ #include + #include -#include "resource.hh" -#include "drawable.hh" +#include +#include -namespace dc { +namespace Mf { -class scene : public resource, public drawable +class Scene : public Resource, public Drawable { public: - scene(const std::string& name); + Scene(const std::string& name); - void draw(scalar alpha); + void draw(Scalar alpha); static std::string getPathToResource(const std::string& name); private: - class scene_impl; - boost::shared_ptr impl; + class SceneImpl; + boost::shared_ptr impl_; }; -} // namespace dc +} // namespace Mf -#endif // _SCENE_HH_ +#endif // _MOOF_SCENE_HH_ /** vim: set ts=4 sw=4 tw=80: *************************************************/