#pragma once #include #include namespace XCEngine::UI::Editor::App { class EditorContext; class EditorShellRuntime; struct WorkspaceTraceEntry { std::string channel = {}; std::string message = {}; }; std::vector SyncWorkspaceEvents( EditorContext& context, const EditorShellRuntime& runtime); } // namespace XCEngine::UI::Editor::App