Files
Bombaleila/Library/PackageCache/com.unity.shadergraph@c8830f61858d/Editor/Data/Interfaces/IGraphDataAction.cs
2026-03-03 00:39:30 +05: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; }
}
}