00001 #ifndef HEADER_EFFECTREVERSE_H 00002 #define HEADER_EFFECTREVERSE_H 00003 00004 #include "ViewEffect.h" 00005 00006 /** 00007 * Blit with reversed left and right side. 00008 */ 00009 class EffectReverse : public ViewEffect { 00010 public: 00011 virtual void blit(SDL_Surface *screen, SDL_Surface *surface, 00012 int x, int y); 00013 }; 00014 00015 #endif