EnableAccessEntiyChildAttribute.cs 396 B

123456789101112131415
  1. using System;
  2. namespace ET
  3. {
  4. /// <summary>
  5. /// 当方法或属性内需要访问Entity类的child和component时 使用此标签
  6. /// 仅供必要时使用 大多数情况推荐通过Entity的子类访问
  7. /// </summary>
  8. [AttributeUsage(AttributeTargets.Method|AttributeTargets.Property)]
  9. public class EnableAccessEntiyChildAttribute : Attribute
  10. {
  11. }
  12. }