Prepare simple API interface

This commit is contained in:
Jaby
2023-11-24 22:12:29 -05:00
committed by Jaby
parent 288addd6d8
commit a642240657
9 changed files with 55 additions and 8 deletions

View File

@@ -0,0 +1,13 @@
#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);
};
}