]> git.localhorst.tv Git - l2e.git/blobdiff - src/menu/InventoryMenu.h
removed lazy fwd headers
[l2e.git] / src / menu / InventoryMenu.h
index 11acf46ce249d35f2fa3d90747b85fb4c2894ff7..0668cda1bb7b86c9bc7c648f8438f02886627ec2 100644 (file)
@@ -1,10 +1,18 @@
 #ifndef MENU_INVENTORYMENU_H_
 #define MENU_INVENTORYMENU_H_
 
-#include "fwd.h"
+namespace common {
+       class Item;
+}
+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 +25,7 @@ public:
 
 public:
        virtual void HandleEvents(const app::Input &);
-       virtual void UpdateWorld(float deltaT);
+       virtual void UpdateWorld(Uint32 deltaT);
        virtual void Render(SDL_Surface *);
 
        int Width() const;