X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;ds=sidebyside;f=src%2Fbattle%2FSmallHeroTag.cpp;h=c6f8dafa4a3a1a71aebf9b71228c59087a17cd97;hb=0b11a24a8b08c49d6e4301573602fb6d01e7a8c8;hp=a70dbfecd2b1e4f577c1d9053ec46f3c6ae5af34;hpb=d20fa78a0dcbc95a69bb6077d2081d42b74a2d1a;p=l2e.git diff --git a/src/battle/SmallHeroTag.cpp b/src/battle/SmallHeroTag.cpp index a70dbfe..c6f8daf 100644 --- a/src/battle/SmallHeroTag.cpp +++ b/src/battle/SmallHeroTag.cpp @@ -1,26 +1,20 @@ -/* - * SmallHeroTag.cpp - * - * Created on: Aug 11, 2012 - * Author: holy - */ - #include "SmallHeroTag.h" #include "BattleState.h" -#include "../geometry/Vector.h" +#include "../math/Vector.h" #include "../graphics/Font.h" #include "../graphics/Frame.h" #include "../graphics/Gauge.h" +#include "../math/Vector.h" -using geometry::Vector; +using math::Vector; using graphics::Font; using graphics::Frame; using graphics::Sprite; namespace battle { -void SmallHeroTag::Render(SDL_Surface *screen, int width, int height, const geometry::Vector &position) const { +void SmallHeroTag::Render(SDL_Surface *screen, int width, int height, const math::Vector &position) const { const Resources &r(battle->Res()); const Frame *frame((index == battle->MaxHeroes() - 1) ? r.lastSmallHeroTagFrame : r.smallHeroTagFrame); const Font *font(r.normalFont);