Files
XCEngine/new_editor/app/Platform/Win32/EditorWindowInternalState.h

27 lines
455 B
C++

#pragma once
#ifndef NOMINMAX
#define NOMINMAX
#endif
#include <windows.h>
#include <string>
namespace XCEngine::UI::Editor::App {
struct EditorWindowWindowState {
HWND hwnd = nullptr;
std::string windowId = {};
std::wstring title = {};
std::string titleText = {};
bool primary = false;
bool closing = false;
};
struct EditorWindowState {
EditorWindowWindowState window = {};
};
} // namespace XCEngine::UI::Editor::App