#ifndef HELP_H #define HELP_H extern "C" { #include #include "SDL/SDL.h" } class DealHelp { public: DealHelp(SDL_Surface* pScreen); ~DealHelp(); bool Loop(); protected: bool PollEvents(); void UpdateDisplay(); protected: SDL_Surface *m_pScreen;//Does not own nSDL_Font *m_pFont; }; #endif