INNER CODE UNIT · C++
EditorApp
OverShifted/OverEngine · OverEditor/src/EditorApp.cpp:20
class EditorApp : public Application
{
public:
EditorApp(int argc, char** argv)
: Application(GenApplicationProps())
{
ImGui::GetIO().IniFilename = nullptr;
ImGui::LoadIniSettingsFromMemory("");
PushLayer(new OverEditor::EditorLayer());
m_ImGuiEnabled = true;
for (int i = 0; i < argc; i++)
{
OE_CORE_INFO(argv[i]);
}
}