Files
XCEngine/new_editor/app/Composition/WorkspaceEventSync.h

22 lines
396 B
C++

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