ougge/src/Resources/fonts.hpp
2024-07-30 21:51:25 +03:00

13 lines
260 B
C++

#pragma once
#include "imgui.h"
#include "../std.hpp"
namespace ougge::Resources {
ImFont* ImFont_LoadFromFile(const std::string& file_path, f32 font_size, f32 dpi);
ImFont* ImFont_LoadFromResource(const std::string& font_name, f32 font_size, f32 dpi);
}