00001 #ifndef HEADER_DECOR_H 00002 #define HEADER_DECOR_H 00003 00004 class View; 00005 00006 #include "SDL.h" 00007 00008 /** 00009 * Screen decoration. 00010 */ 00011 class Decor { 00012 public: 00013 virtual ~Decor() {} 00014 virtual void drawOnScreen(const View *view, SDL_Surface *screen) = 0; 00015 }; 00016 00017 #endif