NodeGroupAttribute.cs 283 B

123456789101112
  1. using System;
  2. namespace XGame.Framework.Nodes
  3. {
  4. /// <summary>
  5. /// 用于标记Node分组的枚举定义
  6. /// </summary>
  7. [AttributeUsage(AttributeTargets.Enum, AllowMultiple = false, Inherited = false)]
  8. public class NodeGroupAttribute : Attribute
  9. {
  10. }
  11. }