23 lines
417 B
C++
23 lines
417 B
C++
#ifndef HGL_GRAPH_TILE_FONT_INCLUDE
|
|
#define HGL_GRAPH_TILE_FONT_INCLUDE
|
|
|
|
#include<hgl/graph/TileData.h>
|
|
#include<hgl/graph/font/FontSource.h>
|
|
|
|
namespace hgl
|
|
{
|
|
namespace graph
|
|
{
|
|
class TileFont
|
|
{
|
|
FontSource *source;
|
|
TileData *tile_data;
|
|
|
|
public:
|
|
|
|
|
|
};//class TileFont
|
|
}//namespace graph
|
|
}//namespace hgl
|
|
#endif//HGL_GRAPH_TILE_FONT_INCLUDE
|