00001
00002
00003
00004
00005
00006
00007
00008 #ifndef _TEMATICOS_H
00009 #define _TEMATICOS_H
00010
00012 class tematicos {
00013 public:
00015 tematicos();
00016 tematicos(const tematicos& orig);
00020 Uint32 recuerda(SDL_Surface *pantalla);
00021 virtual ~tematicos();
00022 private:
00024 void dibujaescenariorec(SDL_Surface* pantalla);
00032 void dibujanumerorec(Uint32 numero, bool principal, SDL_Surface* pantalla);
00037 Uint32 generanumerorec(Uint32 nivel);
00038 };
00039
00040 #endif
00041