]> git.localhorst.tv Git - l2e.git/blobdiff - src/menu/SpellMenu.h
removed useless comments
[l2e.git] / src / menu / SpellMenu.h
index 6cef923689c60e5024771832631c46b8741e8567..c696b03a2b68cf968e68f01c923b4da1e1bf4beb 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 "../geometry/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:
@@ -37,9 +46,9 @@ private:
 
        void LoadSpells();
 
-       void RenderHighlight(SDL_Surface *screen, const geometry::Vector<int> &offset) const;
-       void RenderMenu(SDL_Surface *screen, const geometry::Vector<int> &offset) const;
-       void RenderSpells(SDL_Surface *screen, const geometry::Vector<int> &offset) const;
+       void RenderHighlight(SDL_Surface *screen, const math::Vector<int> &offset) const;
+       void RenderMenu(SDL_Surface *screen, const math::Vector<int> &offset) const;
+       void RenderSpells(SDL_Surface *screen, const math::Vector<int> &offset) const;
 
 private:
        PartyMenu *parent;
@@ -56,4 +65,4 @@ private:
 
 }
 
-#endif /* MENU_SPELLMENU_H_ */
+#endif