]> git.localhorst.tv Git - l2e.git/blobdiff - src/menu/SpellMenu.h
removed lazy fwd headers
[l2e.git] / src / menu / SpellMenu.h
index 42dbfbbbabaf04022748d6de00d8cd89e111f136..8ad86f398625bd82f2be951a39e5bf44cd1ae36f 100644 (file)
@@ -1,10 +1,19 @@
 #ifndef MENU_SPELLMENU_H_
 #define MENU_SPELLMENU_H_
 
-#include "fwd.h"
+namespace common {
+       class Hero;
+       class Spell;
+}
+namespace math {
+       template<class>
+       class Vector;
+}
+namespace menu {
+       class PartyMenu;
+}
+
 #include "../app/State.h"
-#include "../common/fwd.h"
-#include "../math/Vector.h"
 #include "../graphics/Menu.h"
 
 namespace menu {
@@ -17,7 +26,7 @@ public:
 
 public:
        virtual void HandleEvents(const app::Input &);
-       virtual void UpdateWorld(float deltaT);
+       virtual void UpdateWorld(Uint32 deltaT);
        virtual void Render(SDL_Surface *);
 
 public: