关键节点
This commit is contained in:
24
editor/app/Composition/WorkspaceEventSync.h
Normal file
24
editor/app/Composition/WorkspaceEventSync.h
Normal file
@@ -0,0 +1,24 @@
|
||||
#pragma once
|
||||
|
||||
#include "Features/Hierarchy/HierarchyPanel.h"
|
||||
#include "Features/Project/ProjectPanel.h"
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
namespace XCEngine::UI::Editor::App {
|
||||
|
||||
class EditorContext;
|
||||
|
||||
struct WorkspaceTraceEntry {
|
||||
std::string channel = {};
|
||||
std::string message = {};
|
||||
};
|
||||
|
||||
std::vector<WorkspaceTraceEntry> SyncWorkspaceEvents(
|
||||
EditorContext& context,
|
||||
const std::vector<HierarchyPanel::Event>& hierarchyPanelEvents,
|
||||
const std::vector<ProjectPanel::Event>& projectPanelEvents);
|
||||
|
||||
} // namespace XCEngine::UI::Editor::App
|
||||
|
||||
Reference in New Issue
Block a user