]> Dogcows Code - chaz/yoink/blobdiff - src/Main.hh
use only triangles; no quads
[chaz/yoink] / src / Main.hh
index a5ce29336493c95c0115152ef2b0119e3b7116ab..0a3c616a685a4774a4cde93561ad0e4741a2b134 100644 (file)
@@ -13,7 +13,7 @@
 #define _MAIN_HH_
 
 /**
- * @file Main.hh
+ * \file Main.hh
  * This is where all the fun begins.
  */
 
 
 #include <boost/shared_ptr.hpp>
 
-#include <Moof/Dispatch.hh>
-#include <Moof/Math.hh>
-#include <Moof/View.hh>
+#include <moof/dispatcher.hh>
+#include <moof/math.hh>
+#include <moof/view.hh>
 
 
-namespace Mf {
-class Settings;
-class View;
+namespace moof
+{
+       class settings;
+       class view;
 }
 
+
 class Main;
 typedef boost::shared_ptr<Main> MainP;
 
-class Main : public Mf::View
+class Main : public moof::view
 {
 public:
 
-       Main(Mf::Settings& settings, Mf::Video& video);
+       Main(moof::settings& settings, moof::video& video);
 
-       void update(Mf::Scalar t, Mf::Scalar dt);
-       void draw(Mf::Scalar alpha) const;
-       bool handleEvent(const Mf::Event& event);
+       void update(moof::scalar t, moof::scalar dt);
+       void draw(moof::scalar alpha) const;
+       bool handle_event(const moof::event& event);
 
        static std::string getSearchPath();
        static std::string getConfigPath();
@@ -58,7 +60,7 @@ private:
         */
        static void setupGL();
 
-       Mf::Dispatch::Handle mNewContextDispatch;
+       moof::dispatcher::handle mNewContextDispatch;
 };
 
 
This page took 0.02194 seconds and 4 git commands to generate.