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

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