#pragma once #include "Bootstrap/EditorResources.h" #include namespace XCEngine::UI::Editor::BootstrapInternal { inline constexpr const wchar_t* kWindowClassName = L"XCEditorShellHost"; inline constexpr const wchar_t* kWindowTitle = L"Main Scene * - Main.xx - XCEngine Editor"; inline constexpr DWORD kBorderlessWindowStyle = WS_POPUP | WS_THICKFRAME; void EnableDpiAwareness(); } // namespace XCEngine::UI::Editor::BootstrapInternal