ModifierID.cs 279 B

1234567891011121314151617
  1. namespace UnityEngine.UI
  2. {
  3. [System.AttributeUsage(System.AttributeTargets.Class)]
  4. public class ModifierID : System.Attribute{
  5. private string name;
  6. public ModifierID(string name){
  7. this.name = name;
  8. }
  9. public string Name{
  10. get{
  11. return name;
  12. }
  13. }
  14. }
  15. }