X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2Fstates%2FSelectIkari.cpp;h=8d2006a4269597802aa287a68cd19341d6082c58;hb=3701b454bd2c868a886ae5287d8209b714649344;hp=604689c998d28dbd258f2c8f4636cfc68d1489b2;hpb=3f8fac16c7ae2cbe7da47b98aba9b558825723e7;p=l2e.git diff --git a/src/battle/states/SelectIkari.cpp b/src/battle/states/SelectIkari.cpp index 604689c..8d2006a 100644 --- a/src/battle/states/SelectIkari.cpp +++ b/src/battle/states/SelectIkari.cpp @@ -1,10 +1,3 @@ -/* - * SelectIkari.cpp - * - * Created on: Aug 9, 2012 - * Author: holy - */ - #include "SelectIkari.h" #include "SelectAttackType.h" @@ -15,32 +8,33 @@ #include "../../common/Ikari.h" #include "../../common/Item.h" #include "../../graphics/Frame.h" +#include "../../math/Vector.h" using app::Application; using app::Input; using common::Ikari; -using geometry::Vector; +using math::Vector; using graphics::Frame; namespace battle { -void SelectIkari::OnEnterState(Application &c, SDL_Surface *screen) { +void SelectIkari::OnEnterState(SDL_Surface *screen) { } -void SelectIkari::OnExitState(Application &c, SDL_Surface *screen) { +void SelectIkari::OnExitState(SDL_Surface *screen) { } -void SelectIkari::OnResumeState(Application &ctrl, SDL_Surface *screen) { +void SelectIkari::OnResumeState(SDL_Surface *screen) { if (battle->ActiveHero().GetAttackChoice().Selection().HasSelected()) { battle->ActiveHero().GetAttackChoice().SetType(AttackChoice::IKARI); battle->ActiveHero().GetAttackChoice().SetItem(battle->ActiveHero().IkariMenu().Selected()); - ctrl.PopState(); + Ctrl().PopState(); } } -void SelectIkari::OnPauseState(Application &ctrl, SDL_Surface *screen) { +void SelectIkari::OnPauseState(SDL_Surface *screen) { } @@ -93,7 +87,7 @@ void SelectIkari::HandleEvents(const Input &input) { } } -void SelectIkari::UpdateWorld(float deltaT) { +void SelectIkari::UpdateWorld(Uint32 deltaT) { }