checkpoint: commit current workspace state
This commit is contained in:
21
new_editor/include/XCEditor/Windowing/WindowIntent.h
Normal file
21
new_editor/include/XCEditor/Windowing/WindowIntent.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#pragma once
|
||||
|
||||
#include "FramePriority.h"
|
||||
#include "FrameReason.h"
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
namespace XCEngine::UI::Editor::Windowing::Domain {
|
||||
|
||||
struct WindowIntent {
|
||||
enum class Type : std::uint8_t {
|
||||
None = 0,
|
||||
RequestFrame,
|
||||
};
|
||||
|
||||
Type type = Type::None;
|
||||
FramePriority framePriority = FramePriority::Normal;
|
||||
FrameReason frameReason = FrameReason::Unknown;
|
||||
};
|
||||
|
||||
} // namespace XCEngine::UI::Editor::Windowing::Domain
|
||||
Reference in New Issue
Block a user