]> git.localhorst.tv Git - l2e.git/blobdiff - src/menu/ScenarioMenu.h
removed useless comments
[l2e.git] / src / menu / ScenarioMenu.h
index 23cb5145bf2d3fa42a8b7e5d9da4678fcc1a77a6..ab6cd668eabdbd9fbf3f6a51bdd491404abd92e4 100644 (file)
@@ -1,10 +1,18 @@
 #ifndef MENU_SCENARIOMENU_H_
 #define MENU_SCENARIOMENU_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 {
@@ -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;
@@ -33,8 +41,8 @@ private:
 
        void LoadItems();
 
-       void RenderHeadline(SDL_Surface *screen, const geometry::Vector<int> &offset) const;
-       void RenderItems(SDL_Surface *screen, const geometry::Vector<int> &offset) const;
+       void RenderHeadline(SDL_Surface *screen, const math::Vector<int> &offset) const;
+       void RenderItems(SDL_Surface *screen, const math::Vector<int> &offset) const;
 
 private:
        PartyMenu *parent;
@@ -44,4 +52,4 @@ private:
 
 }
 
-#endif /* MENU_SCENARIOMENU_H_ */
+#endif