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