jabyengine/support/include/FontWriter/default_font.hpp

13 lines
307 B
C++

#pragma once
#include "Type/types.hpp"
namespace JabyEngine {
struct DefaultFont {
static constexpr auto Info = FontInfo {
.texture_size = {64, 80},
.font_size = {12, 16}
};
static void load(uint32_t* work_area, SimpleTIM vram_dst);
};
}