Files
Shopkeeper/Library/PackageCache/com.unity.shadergraph@608f316e1f48/Editor/ShaderGraphToolbarExtension.cs
Caleb Sandford deQuincey 47944971ca initial game submission
2025-06-10 22:13:25 +01: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);
}
}