penis/Library/PackageCache/com.unity.shadergraph@bd938c0c5e52/Editor/Data/Interfaces/IGraphDataAction.cs
Vladislav 2750530006 1
2025-09-18 15:33:57 +03: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; }
}
}