X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2Fstates%2FRunState.cpp;h=afbbe5321cd015c17f1dabcd56afb3e508786e94;hb=06db9f596cd1c5aa4c0832b387882f7c74c1b4c0;hp=cf113f24f5a41b6aa433191f64365b14b4176f1e;hpb=3f8fac16c7ae2cbe7da47b98aba9b558825723e7;p=l2e.git diff --git a/src/battle/states/RunState.cpp b/src/battle/states/RunState.cpp index cf113f2..afbbe53 100644 --- a/src/battle/states/RunState.cpp +++ b/src/battle/states/RunState.cpp @@ -10,7 +10,7 @@ #include "../BattleState.h" #include "../../app/Application.h" #include "../../app/Input.h" -#include "../../geometry/Vector.h" +#include "../../math/Vector.h" #include "../../graphics/Font.h" #include "../../graphics/Frame.h" @@ -18,23 +18,23 @@ using app::Application; using app::Input; -using geometry::Vector; +using math::Vector; namespace battle { -void RunState::OnEnterState(Application &c, SDL_Surface *screen) { +void RunState::OnEnterState(SDL_Surface *screen) { } -void RunState::OnExitState(Application &c, SDL_Surface *screen) { +void RunState::OnExitState(SDL_Surface *screen) { } -void RunState::OnResumeState(Application &ctrl, SDL_Surface *screen) { +void RunState::OnResumeState(SDL_Surface *screen) { timer = GraphicsTimers().StartCountdown(2500); } -void RunState::OnPauseState(Application &ctrl, SDL_Surface *screen) { +void RunState::OnPauseState(SDL_Surface *screen) { }