zengine/engine/src/editor/editor.cpp

14 lines
208 B
C++
Raw Normal View History

2024-11-27 22:33:09 +08:00
#include "editor/editor.h"
#include "imgui.h"
namespace api {
void EditorModule::OnLoad(int argc, char** argv)
{
IMGUI_CHECKVERSION();
ImGui::CreateContext();
}
void EditorModule::OnUnload()
{
}
}