Files
GameDevTVObstacleDodge/Library/PackageCache/com.unity.shadergraph@41211273cdd1/Editor/Data/Interfaces/IGraphDataAction.cs

13 lines
304 B
C#
Raw Normal View History

2026-01-08 16:50:20 +00:00
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; }
}
}