Files
minesweeper-coop/CoopSweeper/ICloneable.cs
2018-12-15 16:07:03 +01:00

12 lines
187 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace CoopSweeper
{
public interface ICloneable<T> where T : ICloneable<T>
{
T Clone();
}
}