2021-09-09 20:42:29 -04:00

12 lines
198 B
C#

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