X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fmap%2FTransitionState.cpp;h=1a2afb50854e6a2d8485fd0b912ba09076aea06c;hb=2ccc2369d32fb680a3047519d79c17de34c4e10a;hp=9a1d699f6582c44fd4b6b7ecf3e0f10b86e60bbf;hpb=e02068d51f5e7f82d4d3195e9a9ce5c9d76f727d;p=l2e.git diff --git a/src/map/TransitionState.cpp b/src/map/TransitionState.cpp index 9a1d699..1a2afb5 100644 --- a/src/map/TransitionState.cpp +++ b/src/map/TransitionState.cpp @@ -25,24 +25,24 @@ TransitionState::TransitionState(MapState *ms, Map *map, const Vector &coor } -void TransitionState::EnterState(Application &c, SDL_Surface *screen) { +void TransitionState::OnEnterState(Application &c, SDL_Surface *screen) { ctrl = &c; } -void TransitionState::ExitState(Application &, SDL_Surface *screen) { +void TransitionState::OnExitState(Application &, SDL_Surface *screen) { } -void TransitionState::ResumeState(Application &ctrl, SDL_Surface *screen) { +void TransitionState::OnResumeState(Application &ctrl, SDL_Surface *screen) { } -void TransitionState::PauseState(Application &ctrl, SDL_Surface *screen) { +void TransitionState::OnPauseState(Application &ctrl, SDL_Surface *screen) { } -void TransitionState::Resize(int width, int height) { +void TransitionState::OnResize(int width, int height) { }