From ef84a87f238b1a445db6be97274cf2b5ca5aa5e1 Mon Sep 17 00:00:00 2001 From: "HuYingzhuo(hugo/hyzboy)" Date: Wed, 26 Jul 2023 22:29:49 +0800 Subject: [PATCH] added BitmapFont.h --- inc/hgl/2d/BitmapFont.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 inc/hgl/2d/BitmapFont.h 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