Newer
Older
DungeonShooting / DungeonShooting_Godot / src / framework / IClone.cs
@小李xl 小李xl on 24 Jun 2023 113 bytes 将玩家血条改为单颗红心

public interface IClone<T>
{
    /// <summary>
    /// 克隆当前对象
    /// </summary>
    T Clone();
}