14 lines
284 B
C++
14 lines
284 B
C++
#pragma once
|
|
|
|
#include <imgui.h>
|
|
#include "../common/std.hpp"
|
|
#include "resources.hpp"
|
|
|
|
namespace ougge::resources {
|
|
|
|
ImFont* ImFont_LoadFromFile(const std::string& file_path, f32 font_size, f32 dpi);
|
|
|
|
ImFont* ImFont_LoadFromResource(ResourceFactory* res, f32 font_size, f32 dpi);
|
|
|
|
}
|