Files
stas-barecky/Library/PackageCache/com.unity.shadergraph@3cfe1d1f3f8c/Editor/Data/Interfaces/IHasCustomDeprecationMessage.cs
2026-01-08 20:43:08 +05:00

12 lines
366 B
C#

using UnityEditor.Graphing;
using UnityEditor.ShaderGraph.Internal;
namespace UnityEditor.ShaderGraph
{
interface IHasCustomDeprecationMessage
{
public void GetCustomDeprecationMessage(out string deprecationString, out string buttonText, out string labelText, out MessageType messageType);
public string GetCustomDeprecationLabel();
}
}