diff --git a/inc/hgl/2d/BitmapFont.h b/inc/hgl/2d/BitmapFont.h new file mode 100644 index 0000000..42920a7 --- /dev/null +++ b/inc/hgl/2d/BitmapFont.h @@ -0,0 +1,18 @@ +#pragma once +#include + +namespace hgl +{ + /* + * 基于位图的字体 + */ + class BitmapFont + { + uint bits; + uint width,height; + + public: + + + };//class BitmapFont +}//namespace hgl