Newer
Older
DungeonShooting / DungeonShooting_Godot / src / framework / IClone.cs
@小李xl 小李xl on 24 Jun 2023 113 bytes 将玩家血条改为单颗红心
  1.  
  2. public interface IClone<T>
  3. {
  4. /// <summary>
  5. /// 克隆当前对象
  6. /// </summary>
  7. T Clone();
  8. }