15 lines
305 B
C++
15 lines
305 B
C++
#pragma once
|
|
|
|
namespace XCEngine::UI::Editor::Windowing::Domain {
|
|
|
|
struct WindowCaptureDemand {
|
|
bool shellInteractive = false;
|
|
bool hostedContent = false;
|
|
|
|
bool HasAny() const {
|
|
return shellInteractive || hostedContent;
|
|
}
|
|
};
|
|
|
|
} // namespace XCEngine::UI::Editor::Windowing::Domain
|