gates_of_skeldal/game/default_font.in.cpp
2025-01-26 21:36:03 +01:00

14 lines
153 B
C++

#include <base64.h>
constexpr binary_data font_data ="@CONTENT@";
extern "C" {
const void *LoadDefaultFont() {
return font_data.begin();
}
}