blob: 3b2e162269453df837810955e2a1b6c0ea6200f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include <SDL2/SDL_ttf.h>
#include <fontconfig/fontconfig.h>
#include "../api/Asset.h"
namespace crepe {
class SDLFontContext{
public:
SDLFontContext();
~SDLFontContext();
Asset get_font_asset(const std::string & font_family);
private:
};
}
|