arenos-nexus/Arenos Nexus/Library/PackageCache/com.unity.shadergraph@940512a5d7e1/Editor/Interface/IRequiresData.cs

10 lines
177 B
C#
Raw Permalink Normal View History

2025-09-25 22:01:28 +02:00
using UnityEditor.ShaderGraph.Serialization;
namespace UnityEditor.ShaderGraph
{
interface IRequiresData<T> where T : JsonObject
{
T data { get; set; }
}
}