preparing for basic model loading once for several entities
This commit is contained in:
20
editor/src/panels/models_panel.cpp
Normal file
20
editor/src/panels/models_panel.cpp
Normal 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();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user