X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fmap%2FTransitionState.h;h=761be8bb434af3e32454709ff48c71a706b6da33;hb=cc3d698b8c1ad09d7a3f9e3f28bc84e0ac1735ea;hp=0dfa7cf5e1d7aed97cec1c64ef6fa5b9f2e7abd5;hpb=7252571fb926a187c4c40e8f4eec718f16d63ffa;p=l2e.git diff --git a/src/map/TransitionState.h b/src/map/TransitionState.h index 0dfa7cf..761be8b 100644 --- a/src/map/TransitionState.h +++ b/src/map/TransitionState.h @@ -1,10 +1,3 @@ -/* - * TransitionState.h - * - * Created on: Oct 7, 2012 - * Author: holy - */ - #ifndef MAP_TRANSITIONSTATE_H_ #define MAP_TRANSITIONSTATE_H_ @@ -27,15 +20,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;