preparing for basic model loading once for several entities

This commit is contained in:
Erris
2026-03-12 20:04:57 +01:00
parent 913d1437c0
commit 076fe75409
3 changed files with 50 additions and 14 deletions

View File

@@ -0,0 +1,20 @@
#include <panels/models_panel.hpp>
#include <open_engine.hpp>
#include "imgui.h"
#include <vector>
namespace OpenEngine {
static std::vector<Ref<Model3D>> temp_model_list;
void ModelsPanelOnImGuiRender()
{
ImGui::Begin("Models");
ImGui::End();
}
}