X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fapp%2FApplication.h;h=db089e09356c168509f5bc1dcd2c4d8b741e4bab;hb=HEAD;hp=df5de259857c8c4d8c7e231ff799c1a165b2b2b7;hpb=ede708d4e15a34a4443727fc64fd28946fcbeb41;p=l2e.git diff --git a/src/app/Application.h b/src/app/Application.h index df5de25..db089e0 100644 --- a/src/app/Application.h +++ b/src/app/Application.h @@ -1,17 +1,15 @@ -/* - * Application.h - * - * Created on: Apr 8, 2012 - * Author: holy - */ - #ifndef APP_APPLICATION_H_ #define APP_APPLICATION_H_ -#include "fwd.h" +namespace app { + class State; +} +namespace sdl { + class InitScreen; +} + #include "Input.h" #include "Timer.h" -#include "../sdl/InitScreen.h" #include #include @@ -84,10 +82,11 @@ private: Timers globalTimers; Input input; Uint32 last; + Uint32 remaining; bool inStateChage; }; } -#endif /* APP_APPLICATION_H_ */ +#endif