13 lines
288 B
C++
13 lines
288 B
C++
#pragma once
|
|
#include "Type/types.hpp"
|
|
|
|
namespace JabyEngine {
|
|
struct DefaultFont {
|
|
static constexpr auto Info = FontInfo {
|
|
.VRAMSize = {64, 80},
|
|
.FontSize = {12, 16}
|
|
};
|
|
|
|
static void load(GPU::PositionU16 vram_dst);
|
|
};
|
|
} |