Files
snivy/src/resource/font.hpp
shweet 8b2edd1359
Some checks failed
Build / Build Game (push) Has been cancelled
Just so I don't lose current progress on 2.0...
2026-01-10 03:07:06 -05:00

20 lines
314 B
C++

#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();
};
}