]> git.localhorst.tv Git - l2e.git/blobdiff - src/map/TransitionState.h
removed stupid file headers that eclipse put in
[l2e.git] / src / map / TransitionState.h
index 0dfa7cf5e1d7aed97cec1c64ef6fa5b9f2e7abd5..761be8bb434af3e32454709ff48c71a706b6da33 100644 (file)
@@ -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<int> &coordinates;