Newer
Older
DungeonShooting / DungeonShooting_Godot / src / game / buff / EffectFragment.cs
@小李xl 小李xl on 17 Mar 2024 221 bytes 重构主动道具中

/// <summary>
/// 主动道具使用效果基类
/// </summary>
public abstract class EffectFragment : PropFragment
{
    /// <summary>
    /// 使用道具的回调
    /// </summary>
    public abstract void OnUse();
}