X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fmap%2FMapState.cpp;h=7e42e13a1779ef5041d64fbf57ecf4ef410fbda8;hb=2ccc2369d32fb680a3047519d79c17de34c4e10a;hp=37ccc72246c1c62c84bac7c77e75af59ffe77107;hpb=7c43158af1abf38fa896a442cb3c6d8a5bc630e7;p=l2e.git diff --git a/src/map/MapState.cpp b/src/map/MapState.cpp index 37ccc72..7e42e13 100644 --- a/src/map/MapState.cpp +++ b/src/map/MapState.cpp @@ -47,25 +47,25 @@ MapState::MapState(GameConfig *g, Map *map) } -void MapState::EnterState(Application &c, SDL_Surface *screen) { +void MapState::OnEnterState(Application &c, SDL_Surface *screen) { ctrl = &c; camera.Resize(screen->w, screen->h); LoadMap(map); } -void MapState::ExitState(Application &ctrl, SDL_Surface *screen) { +void MapState::OnExitState(Application &ctrl, SDL_Surface *screen) { } -void MapState::ResumeState(Application &ctrl, SDL_Surface *screen) { +void MapState::OnResumeState(Application &ctrl, SDL_Surface *screen) { camera.Resize(screen->w, screen->h); } -void MapState::PauseState(Application &ctrl, SDL_Surface *screen) { +void MapState::OnPauseState(Application &ctrl, SDL_Surface *screen) { } -void MapState::Resize(int width, int height) { +void MapState::OnResize(int width, int height) { camera.Resize(width, height); }