]> Dogcows Code - chaz/yoink/blobdiff - src/moof/drawable.hh
the massive refactoring effort
[chaz/yoink] / src / moof / drawable.hh
similarity index 67%
rename from src/Moof/Drawable.hh
rename to src/moof/drawable.hh
index 40916c095639b9ec397f4f47714824dd8a0aa218..3882995fe900aceb46ed455433a44ebe81d5d8cf 100644 (file)
 #ifndef _MOOF_DRAWABLE_HH_
 #define _MOOF_DRAWABLE_HH_
 
-#include <Moof/Math.hh>
+/**
+ * \file drawable.hh
+ * Representation for an object that can be drawn to the screen.
+ */
 
+#include <moof/math.hh>
 
-namespace Mf {
+
+namespace moof {
 
 
 /**
  * Interface for anything that can be drawn.
  */
-
-class Drawable
+class drawable
 {
 public:
-       virtual ~Drawable() {}
+       virtual ~drawable() {}
 
-       virtual void draw(Scalar alpha) const = 0;
+       virtual void draw(scalar alpha) const = 0;
 };
 
 
-} // namespace Mf
+} // namespace moof
 
 #endif // _MOOF_DRAWABLE_HH_
 
This page took 0.019337 seconds and 4 git commands to generate.