00001 /* Crown and Cutlass 00002 * CCFont Header 00003 */ 00004 00005 #if !defined ( _CCFONT_H_ ) 00006 #define _CCFONT_H_ 00007 00008 #include <guichan.hpp> 00009 00010 class FontResource; 00011 00012 class CCFont { 00013 public: 00014 CCFont(std::string name); 00015 ~CCFont(); 00016 00017 gcn::ImageFont *GetImageFont(); 00018 00019 private: 00020 FontResource *m_resource; 00021 }; 00022 00023 #endif
1.4.7