Started quake map importer

This commit is contained in:
Antoine Pilote
2024-07-28 14:53:12 -04:00
parent f9b5e561ad
commit d33c4f33df
6 changed files with 142 additions and 2 deletions

View File

@@ -2231,6 +2231,11 @@ namespace Nuake {
{
m_ShowTrenchbroomConfigurator = !m_ShowTrenchbroomConfigurator;
}
if (ImGui::MenuItem("Map Importer", NULL, m_ShowMapImporter))
{
m_ShowMapImporter = !m_ShowMapImporter;
}
ImGui::EndMenu();
}
if (ImGui::BeginMenu("View"))
@@ -2421,6 +2426,11 @@ namespace Nuake {
m_TrenchhbroomConfigurator.Draw();
}
if (m_ShowMapImporter)
{
m_MapImporter.Draw();
}
DrawMenuBar();
DrawMenuBars();
DrawStatusBar();