Files
Test-Multiplayer/Library/PackageCache/com.unity.shadergraph@2c9221ffedf4/Editor/ShaderGraphToolbarExtension.cs
pelpanagiotis 329b7d3183 First Commit
2025-12-21 18:31:02 +02:00

13 lines
290 B
C#

using System;
using System.Collections.Generic;
using UnityEngine;
using Node = UnityEditor.Experimental.GraphView.Node;
namespace UnityEditor.ShaderGraph.Drawing
{
internal interface IShaderGraphToolbarExtension
{
abstract void OnGUI(MaterialGraphView graphView);
}
}