1234567891011121314 |
- using System;
- namespace Mono
- {
- [AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = false)]
- public class UIBindingAttribute : Attribute
- {
- /// <summary>
- /// 预设名字
- /// </summary>
- public string prefab { get; set; }
- }
- }
|