untangle-puzzlegame/Library/PackageCache/com.unity.shadergraph@cdef3258c742/Editor/Data/Interfaces/IGraphDataAction.cs
2025-04-17 17:33:08 -04:00

13 lines
304 B
C#

using System;
using GraphData = UnityEditor.ShaderGraph.GraphData;
namespace UnityEditor.ShaderGraph
{
// An action takes in a reference to a GraphData object and performs some modification on it
interface IGraphDataAction
{
Action<GraphData> modifyGraphDataAction { get; }
}
}