Just so I don't lose current progress on 2.0...
Some checks failed
Build / Build Game (push) Has been cancelled

This commit is contained in:
2026-01-10 03:07:06 -05:00
parent 1f1ac0db4d
commit 8b2edd1359
31 changed files with 4 additions and 0 deletions

20
src/resource/font.hpp Normal file
View File

@@ -0,0 +1,20 @@
#pragma once
#include "imgui.h"
#include <string>
namespace game::resource
{
class Font
{
public:
ImFont* internal;
static constexpr auto NORMAL = 12;
static constexpr auto BIG = 16;
static constexpr auto LARGE = 24;
Font(const std::string&, float = NORMAL);
ImFont* get();
};
}