mirror of https://github.com/AxioDL/metaforce.git
17 lines
185 B
C++
17 lines
185 B
C++
|
#ifndef SPECTER_FONTCACHE_HPP
|
||
|
#define SPECTER_FONTCACHE_HPP
|
||
|
|
||
|
#include <ft2build.h>
|
||
|
#include FT_FREETYPE_H
|
||
|
|
||
|
namespace Specter
|
||
|
{
|
||
|
|
||
|
class FontCache
|
||
|
{
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // SPECTER_FONTCACHE_HPP
|