X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fmenu%2FStatusMenu.h;h=eaf10177a7c396317e3b695617ed78aa19f2ae65;hb=a3ba4dc677ad7c92eeb78b20b642241563605c9d;hp=5f6f986eb465b69ba87434de87b3fd138aaac40c;hpb=f552d26f537af9fa48255bd71cdc1a0a1b860bac;p=l2e.git diff --git a/src/menu/StatusMenu.h b/src/menu/StatusMenu.h index 5f6f986..eaf1017 100644 --- a/src/menu/StatusMenu.h +++ b/src/menu/StatusMenu.h @@ -1,17 +1,10 @@ -/* - * StatusMenu.h - * - * Created on: Oct 22, 2012 - * Author: holy - */ - #ifndef MENU_STATUSMENU_H_ #define MENU_STATUSMENU_H_ #include "fwd.h" #include "../app/State.h" #include "../common/fwd.h" -#include "../geometry/Vector.h" +#include "../math/Vector.h" #include "../graphics/Menu.h" namespace menu { @@ -44,17 +37,17 @@ private: const common::Hero &GetHero() const; - void RenderStatus(SDL_Surface *screen, const geometry::Vector &offset) const; - void RenderStats(SDL_Surface *screen, const geometry::Vector &offset) const; - void RenderStatsLine(const char *label, int number, SDL_Surface *screen, const geometry::Vector &position) const; - void RenderEquipment(SDL_Surface *screen, const geometry::Vector &offset) const; - void RenderEquipmentLine(const common::Item *, SDL_Surface *screen, const geometry::Vector &position) const; + void RenderStatus(SDL_Surface *screen, const math::Vector &offset) const; + void RenderStats(SDL_Surface *screen, const math::Vector &offset) const; + void RenderStatsLine(const char *label, int number, SDL_Surface *screen, const math::Vector &position) const; + void RenderEquipment(SDL_Surface *screen, const math::Vector &offset) const; + void RenderEquipmentLine(const common::Item *, SDL_Surface *screen, const math::Vector &position) const; /// @param offset the top right corner! - void RenderExperience(SDL_Surface *screen, const geometry::Vector &offset) const; + void RenderExperience(SDL_Surface *screen, const math::Vector &offset) const; /// @param offset the top right corner! - void RenderNextLevel(SDL_Surface *screen, const geometry::Vector &offset) const; - void RenderIkari(SDL_Surface *screen, const geometry::Vector &offset) const; - void RenderMenu(SDL_Surface *screen, const geometry::Vector &offset) const; + void RenderNextLevel(SDL_Surface *screen, const math::Vector &offset) const; + void RenderIkari(SDL_Surface *screen, const math::Vector &offset) const; + void RenderMenu(SDL_Surface *screen, const math::Vector &offset) const; private: PartyMenu *parent;