X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fgraphics%2FColorFade.h;h=b3e98bd15f7973bff89c89ff0efe822be5f65dc3;hb=e518ac67cf94e244df16078dcbc536e6b659e758;hp=26942726e5c6d7e772c313e634b318fc4a0b9b29;hpb=7252571fb926a187c4c40e8f4eec718f16d63ffa;p=l2e.git diff --git a/src/graphics/ColorFade.h b/src/graphics/ColorFade.h index 2694272..b3e98bd 100644 --- a/src/graphics/ColorFade.h +++ b/src/graphics/ColorFade.h @@ -1,10 +1,3 @@ -/* - * ColorFade.h - * - * Created on: Oct 7, 2012 - * Author: holy - */ - #ifndef GRAPHICS_COLORFADE_H_ #define GRAPHICS_COLORFADE_H_ @@ -32,10 +25,10 @@ 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); @@ -45,7 +38,6 @@ private: private: app::Timer timer; - app::Application *ctrl; app::State *slave; SDL_Surface *blinds; Uint32 color;