20 lines
379 B
C++
20 lines
379 B
C++
#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
|