added BitmapFont.h

This commit is contained in:
2023-07-26 22:29:49 +08:00
parent 0fd9552b4e
commit ef84a87f23

18
inc/hgl/2d/BitmapFont.h Normal file
View File

@@ -0,0 +1,18 @@
#pragma once
#include<hgl/type/DataType.h>
namespace hgl
{
/*
* 基于位图的字体
*/
class BitmapFont
{
uint bits;
uint width,height;
public:
};//class BitmapFont
}//namespace hgl