X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fmap%2FTransitionState.h;h=1790d716c39a010fddd3ed85628e25a8d7aa2757;hb=5ca18f73987fb3935ab34654cbbecf5eca4704cb;hp=0dfa7cf5e1d7aed97cec1c64ef6fa5b9f2e7abd5;hpb=7252571fb926a187c4c40e8f4eec718f16d63ffa;p=l2e.git diff --git a/src/map/TransitionState.h b/src/map/TransitionState.h index 0dfa7cf..1790d71 100644 --- a/src/map/TransitionState.h +++ b/src/map/TransitionState.h @@ -27,15 +27,14 @@ public: virtual void Render(SDL_Surface *); private: - virtual void OnEnterState(app::Application &ctrl, SDL_Surface *screen); - virtual void OnExitState(app::Application &ctrl, SDL_Surface *screen); - virtual void OnResumeState(app::Application &ctrl, SDL_Surface *screen); - virtual void OnPauseState(app::Application &ctrl, SDL_Surface *screen); + virtual void OnEnterState(SDL_Surface *screen); + virtual void OnExitState(SDL_Surface *screen); + virtual void OnResumeState(SDL_Surface *screen); + virtual void OnPauseState(SDL_Surface *screen); virtual void OnResize(int width, int height); private: - app::Application *ctrl; MapState *ms; Map *map; const geometry::Vector &coordinates;