From 54cd790c40a321f7b967bf20c6dd2f962dee42d5 Mon Sep 17 00:00:00 2001 From: hyzboy Date: Mon, 29 Jun 2020 19:49:54 +0800 Subject: [PATCH] add TileFont.h --- inc/hgl/graph/font/TileFont.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 inc/hgl/graph/font/TileFont.h diff --git a/inc/hgl/graph/font/TileFont.h b/inc/hgl/graph/font/TileFont.h new file mode 100644 index 00000000..6a827d5e --- /dev/null +++ b/inc/hgl/graph/font/TileFont.h @@ -0,0 +1,22 @@ +#ifndef HGL_GRAPH_TILE_FONT_INCLUDE +#define HGL_GRAPH_TILE_FONT_INCLUDE + +#include +#include + +namespace hgl +{ + namespace graph + { + class TileFont + { + FontSource *source; + TileData *tile_data; + + public: + + + };//class TileFont + }//namespace graph +}//namespace hgl +#endif//HGL_GRAPH_TILE_FONT_INCLUDE