HasDependenciesAttribute.cs 321 B

123456789101112131415
  1. using System;
  2. namespace UnityEditor.ShaderGraph
  3. {
  4. [AttributeUsage(AttributeTargets.Class)]
  5. class HasDependenciesAttribute : Attribute
  6. {
  7. public HasDependenciesAttribute(Type minimalType)
  8. {
  9. this.minimalType = minimalType;
  10. }
  11. public Type minimalType { get; }
  12. }
  13. }