TitleAttribute.cs 419 B

1234567891011
  1. using System;
  2. namespace UnityEditor.ShaderGraph
  3. {
  4. [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Method | AttributeTargets.Class | AttributeTargets.Event | AttributeTargets.Parameter | AttributeTargets.ReturnValue)]
  5. class TitleAttribute : Attribute
  6. {
  7. public string[] title;
  8. public TitleAttribute(params string[] title) { this.title = title; }
  9. }
  10. }