X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fmenu%2FChangeHero.h;h=15c26f4f0d8de32287d38ad68fa58a4a2619bb79;hb=ec824200aec12d6870b70304bcd2e2aeadba767b;hp=4b80694ffd670ac5b2c14c1f06454dc86c24b594;hpb=cc3d698b8c1ad09d7a3f9e3f28bc84e0ac1735ea;p=l2e.git diff --git a/src/menu/ChangeHero.h b/src/menu/ChangeHero.h index 4b80694..15c26f4 100644 --- a/src/menu/ChangeHero.h +++ b/src/menu/ChangeHero.h @@ -1,9 +1,15 @@ #ifndef MENU_CHANGEHERO_H_ #define MENU_CHANGEHERO_H_ -#include "fwd.h" +namespace math { + template + class Vector; +} +namespace menu { + class PartyMenu; +} + #include "../app/State.h" -#include "../geometry/Vector.h" #include @@ -17,7 +23,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: @@ -34,7 +40,7 @@ private: void SelectedHero(int index); - void RenderHighlight(SDL_Surface *screen, const geometry::Vector &offset) const; + void RenderHighlight(SDL_Surface *screen, const math::Vector &offset) const; static void OnHeroSelected(void *, int); @@ -47,4 +53,4 @@ private: } -#endif /* MENU_CHANGEHERO_H_ */ +#endif