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