1234567891011121314151617181920 |
- using System;
- namespace ET
- {
- /// <summary>
- /// 组件类父级实体类型约束
- /// 父级实体类型唯一的 标记指定父级实体类型[ComponentOf(typeof(parentType)]
- /// 不唯一则标记[ComponentOf]
- /// </summary>
- [AttributeUsage(AttributeTargets.Class)]
- public class ComponentOfAttribute : Attribute
- {
- public Type Type;
- public ComponentOfAttribute(Type type = null)
- {
- this.Type = type;
- }
- }
- }
|