2021-06-25 07:50:12 -04:00

12 lines
198 B
C#

using UnityEngine;
namespace UnityEditor.ShaderGraph
{
[GenerationAPI]
interface IHasMetadata
{
string identifier { get; }
ScriptableObject GetMetadataObject();
}
}