13 lines
267 B
C++
13 lines
267 B
C++
#pragma once
|
|
|
|
#include "imgui.h"
|
|
#include "../common/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);
|
|
|
|
}
|