Newer
Older
DungeonShooting / DungeonShooting_Godot / src / game / buff / ChargeFragmentAttribute.cs
@小李xl 小李xl on 22 Mar 2024 268 bytes 道具逻辑片段更新参数描述
using System;

/// <summary>
/// 充能片段
/// </summary>
[AttributeUsage(AttributeTargets.Class)]
public class ChargeFragmentAttribute : FragmentAttribute
{
    public ChargeFragmentAttribute(string name, string description) : base(name, description)
    {
    }
}