Refactor XCEditor into library-style layout

This commit is contained in:
2026-04-06 20:02:34 +08:00
parent f16620afc6
commit 2a61f0b20a
60 changed files with 524 additions and 502 deletions

5
new_editor/app/main.cpp Normal file
View File

@@ -0,0 +1,5 @@
#include "Application.h"
int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE, LPWSTR, int nCmdShow) {
return XCEngine::UI::Editor::RunXCUIEditorApp(hInstance, nCmdShow);
}