]> Dogcows Code - chaz/yoink/blobdiff - src/Main.hh
the massive refactoring effort
[chaz/yoink] / src / Main.hh
index b6a6684aa46ffa4db559b1aaeefe96a427ccefa8..aa4a0d9c028409bf75c3210f5b897f22cdf1a311 100644 (file)
 
 #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
+namespace moof
 {
-       class Settings;
-       class View;
+       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();
@@ -60,7 +60,7 @@ private:
         */
        static void setupGL();
 
-       Mf::Dispatch::Handle mNewContextDispatch;
+       moof::dispatcher::handle mNewContextDispatch;
 };
 
 
This page took 0.01831 seconds and 4 git commands to generate.