2026-04-15 08:24:06 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
2026-04-27 23:45:24 +08:00
|
|
|
#include "Windowing/EditorFrameServices.h"
|
2026-04-27 19:16:08 +08:00
|
|
|
#include "WorkspacePanels/EditorWorkspacePanelRuntime.h"
|
2026-04-22 16:37:20 +08:00
|
|
|
|
2026-04-15 08:24:06 +08:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
namespace XCEngine::UI::Editor::App {
|
|
|
|
|
|
|
|
|
|
class EditorContext;
|
|
|
|
|
|
|
|
|
|
std::vector<WorkspaceTraceEntry> SyncWorkspaceEvents(
|
|
|
|
|
EditorContext& context,
|
2026-04-27 01:58:23 +08:00
|
|
|
const std::vector<EditorWorkspacePanelFrameEvent>& panelEvents);
|
2026-04-15 08:24:06 +08:00
|
|
|
|
|
|
|
|
} // namespace XCEngine::UI::Editor::App
|
|
|
|
|
|