Newer
Older
DungeonShooting / DungeonShooting_Godot / src / game / buff / EffectFragmentAttribute.cs
@小李xl 小李xl on 22 Mar 2024 274 bytes 道具逻辑片段更新参数描述
  1. using System;
  2.  
  3. /// <summary>
  4. /// 主动效果片段
  5. /// </summary>
  6. [AttributeUsage(AttributeTargets.Class)]
  7. public class EffectFragmentAttribute : FragmentAttribute
  8. {
  9. public EffectFragmentAttribute(string name, string description) : base(name, description)
  10. {
  11. }
  12. }