]> git.localhorst.tv Git - l2e.git/blobdiff - src/map/MapState.cpp
renamed app::State's Resize -> OnResize
[l2e.git] / src / map / MapState.cpp
index 37ccc72246c1c62c84bac7c77e75af59ffe77107..7e42e13a1779ef5041d64fbf57ecf4ef410fbda8 100644 (file)
@@ -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);
 }