Refactor editor windowing and update renderer regression
This commit is contained in:
19
editor/app/Platform/Win32/Windowing/EditorWindowHostConfig.h
Normal file
19
editor/app/Platform/Win32/Windowing/EditorWindowHostConfig.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#pragma once
|
||||
|
||||
#ifndef NOMINMAX
|
||||
#define NOMINMAX
|
||||
#endif
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
namespace XCEngine::UI::Editor::App {
|
||||
|
||||
struct EditorWindowHostConfig {
|
||||
HINSTANCE hInstance = nullptr;
|
||||
const wchar_t* windowClassName = L"";
|
||||
DWORD windowStyle = 0;
|
||||
const wchar_t* primaryWindowTitle = L"";
|
||||
void* windowUserData = nullptr;
|
||||
};
|
||||
|
||||
} // namespace XCEngine::UI::Editor::App
|
||||
Reference in New Issue
Block a user