Rename Support to lower-case to match rest

This commit is contained in:
2023-11-29 20:30:44 -05:00
parent a6071fd5fc
commit a3c813b7d4
10 changed files with 0 additions and 0 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(uint32_t* work_area, SimpleTIM vram_dst);
};
}