Files
RPGBook/Library/PackageCache/com.unity.shadergraph@052d95cfe62a/Editor/Data/Interfaces/IGraphDataAction.cs
SHOUTING_PIRATE f5928e04c4 intial commit
2025-07-21 17:10:16 +01: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; }
}
}