UIBindingAttribute.cs 296 B

1234567891011121314
  1. using System;
  2. namespace Mono
  3. {
  4. [AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = false)]
  5. public class UIBindingAttribute : Attribute
  6. {
  7. /// <summary>
  8. /// 预设名字
  9. /// </summary>
  10. public string prefab { get; set; }
  11. }
  12. }