X-Git-Url: http://git.localhorst.tv/?p=space.git;a=blobdiff_plain;f=src%2Fapp%2FApplication.h;fp=src%2Fapp%2FApplication.h;h=b5f0a6b607ff362b052be126771705cd1b53996a;hp=61c3f45a5ab7e8ebe3ed740643e7097e17ee1246;hb=61c2d30a60d586cbe63885885c6a373c7713af1e;hpb=08d0e47634e1632c96ebe3308535a86f5e625b40 diff --git a/src/app/Application.h b/src/app/Application.h index 61c3f45..b5f0a6b 100644 --- a/src/app/Application.h +++ b/src/app/Application.h @@ -3,21 +3,21 @@ #include "../graphics/Camera.h" #include "../graphics/Moveable.h" -#include "../math/Vector.h" +#include "../graphics/Vector.h" #include "../world/Universe.h" -#include +#include namespace space { -class InitScreen; +class Canvas; class Entity; class Application { public: - explicit Application(InitScreen &); + explicit Application(Canvas &); public: void Run(); @@ -34,7 +34,7 @@ private: void Render(); private: - InitScreen &screen; + Canvas &canvas; Universe univ;