]> git.localhorst.tv Git - l2e.git/blobdiff - src/map/TransitionState.cpp
renamed state callbacks
[l2e.git] / src / map / TransitionState.cpp
index 9a1d699f6582c44fd4b6b7ecf3e0f10b86e60bbf..75a4deaa540b86ea3d9727175a12ff04c1eff106 100644 (file)
@@ -25,19 +25,19 @@ TransitionState::TransitionState(MapState *ms, Map *map, const Vector<int> &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) {
 
 }