X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fapp%2FApplication.h;h=909942b829730020ecd598e368bcbaefc4d7edcb;hb=4a1816af30dcfe53181a25355bd51cc7b24a83f1;hp=e43faf44e1692b0905d079d25b95084f5262edaf;hpb=59d528aaa84a2210b0a357887853f534cfbea156;p=l2e.git diff --git a/src/app/Application.h b/src/app/Application.h index e43faf4..909942b 100644 --- a/src/app/Application.h +++ b/src/app/Application.h @@ -11,7 +11,7 @@ #include "../sdl/InitScreen.h" #include -#include +#include namespace app { @@ -21,7 +21,7 @@ class State; class Application { public: - explicit Application(SDL_Surface *screen, State *initialState); + Application(sdl::InitScreen *screen, State *initialState); ~Application(void); private: Application(const Application &); @@ -49,7 +49,7 @@ private: void Render(void); private: - SDL_Surface *screen; + sdl::InitScreen *screen; std::stack states; Uint32 last;