refactor(new_editor/app): move entry point and split window synchronization

This commit is contained in:
2026-04-15 10:31:01 +08:00
parent e42b0dc50b
commit 5e2693a16a
4 changed files with 132 additions and 125 deletions

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

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