Add new Views system

This commit is contained in:
Marvin Rohrbach
2018-12-16 11:47:26 +01:00
parent 624f6d1ea6
commit 35e3010a33
9 changed files with 338 additions and 191 deletions

View File

@@ -4,7 +4,7 @@ using System.Text;
namespace CoopSweeper
{
public interface ICloneable<T> where T : ICloneable<T>
public interface ICloneable<T> where T : class, ICloneable<T>
{
T Clone();
}