X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FMain.hh;h=088bd3c1b67e393303165f1a774e6370e84d57be;hp=4532e41ea2e3b4a409513fea1b30df1d9ab76a64;hb=af88821a172c4dfd138b91b2a5148ae50b502fa2;hpb=6f1b787a10d8ab1a3117a4b8c004dd2d90599608 diff --git a/src/Main.hh b/src/Main.hh index 4532e41..088bd3c 100644 --- a/src/Main.hh +++ b/src/Main.hh @@ -22,31 +22,23 @@ #include +#include #include #include #include -#include - -namespace moof -{ - class settings; - class view; -} +#include "yoink.hh" -class Main; -typedef boost::shared_ptr
MainP; - -class Main : public moof::view +class Main : public moof::application { public: - Main(moof::settings& settings, moof::video& video); + Main(moof::settings& settings); void update(moof::scalar t, moof::scalar dt); void draw(moof::scalar alpha) const; - bool handle_event(const moof::event& event); + void handle_event(const moof::event& event); static std::string search_paths(); static std::string config_paths(); @@ -65,6 +57,8 @@ private: moof::dispatcher::handle video_reloaded_; moof::timer hotload_timer_; + + ::yoink yoink; };