]> git.localhorst.tv Git - l2e.git/blobdiff - src/menu/InventoryMenu.h
removed useless comments
[l2e.git] / src / menu / InventoryMenu.h
index c1d458b18cdaf906370e7f24797567cd75069552..10b9730fbbda7304e337c9dfbf0425d29132a65d 100644 (file)
@@ -1,17 +1,18 @@
-/*
- * InventoryMenu.h
- *
- *  Created on: Nov 4, 2012
- *      Author: holy
- */
-
 #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 "../geometry/Vector.h"
 #include "../graphics/Menu.h"
 
 namespace menu {
@@ -24,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;
@@ -40,8 +41,8 @@ private:
 
        void LoadInventory();
 
-       void RenderMenu(SDL_Surface *screen, const geometry::Vector<int> &offset) const;
-       void RenderInventory(SDL_Surface *screen, const geometry::Vector<int> &offset) const;
+       void RenderMenu(SDL_Surface *screen, const math::Vector<int> &offset) const;
+       void RenderInventory(SDL_Surface *screen, const math::Vector<int> &offset) const;
 
 private:
        PartyMenu *parent;
@@ -57,4 +58,4 @@ private:
 
 }
 
-#endif /* MENU_INVENTORYMENU_H_ */
+#endif