blob: 059beb5cc71a441edfed841d3c6e220d0b383bf6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <SFML/Graphics.hpp>
class Font{
public:
const unsigned char *filedata;
unsigned int file_len;
sf::Font sf_font;
Font(const unsigned char *filedata,unsigned int file_len);
};
|