]> git.localhorst.tv Git - l2e.git/blobdiff - src/app/Application.h
new language, new compiler
[l2e.git] / src / app / Application.h
index 62d9740b943aa41107d78c32f704671f427a9392..db089e09356c168509f5bc1dcd2c4d8b741e4bab 100644 (file)
@@ -1,10 +1,15 @@
 #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 <stack>
 #include <queue>
@@ -77,10 +82,11 @@ private:
        Timers<Uint32> globalTimers;
        Input input;
        Uint32 last;
+       Uint32 remaining;
        bool inStateChage;
 
 };
 
 }
 
-#endif /* APP_APPLICATION_H_ */
+#endif