00001 #ifndef HEADER_WIPARA_H 00002 #define HEADER_WIPARA_H 00003 00004 class Font; 00005 00006 #include "VBox.h" 00007 00008 #include "SDL.h" 00009 #include <string> 00010 00011 /** 00012 * Multi line paragraph. 00013 */ 00014 class WiPara : public VBox { 00015 public: 00016 WiPara(const std::string &text, const Font &font, 00017 const SDL_Color &color); 00018 }; 00019 00020 #endif