mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-05 06:00:33 -04:00
14 lines
153 B
C++
14 lines
153 B
C++
#include <base64.h>
|
|
|
|
|
|
constexpr binary_data font_data ="@CONTENT@";
|
|
|
|
extern "C" {
|
|
|
|
const void *LoadDefaultFont() {
|
|
return font_data.begin();
|
|
}
|
|
|
|
}
|
|
|
|
|