]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/states/RunState.cpp
removed now superfluous Application parameter to State callbacks
[l2e.git] / src / battle / states / RunState.cpp
index cf113f24f5a41b6aa433191f64365b14b4176f1e..311e0f35c3cc8b8c7aba89350901da1c762a3e92 100644 (file)
@@ -22,19 +22,19 @@ using geometry::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) {
 
 }