#ifndef LIME_APP_APPLICATION_H #define LIME_APP_APPLICATION_H #include namespace lime { class Application { public: static double GetTicks (); static AutoGCRoot* callback; virtual int Exec () = 0; }; Application* CreateApplication (); } #endif