created ResourceManager

This commit is contained in:
2025-05-19 03:26:18 +05:00
parent d700aae02e
commit 609f7337da
21 changed files with 503 additions and 400 deletions

View File

@@ -1,12 +1,13 @@
#pragma once
#include "imgui.h"
#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(const std::string& font_name, f32 font_size, f32 dpi);
ImFont* ImFont_LoadFromResource(ResourceFactory* res, f32 font_size, f32 dpi);
}