#include "editor/editor.h" #include "imgui.h" namespace api { void EditorModule::OnLoad(int argc, char** argv) { IMGUI_CHECKVERSION(); ImGui::CreateContext(); } void EditorModule::OnUnload() { } }