Implement Change Detection Drawing

This commit is contained in:
Marvin Rohrbach
2018-12-15 16:07:03 +01:00
parent e7fda99c11
commit e0a05da06e
5 changed files with 81 additions and 20 deletions

11
CoopSweeper/ICloneable.cs Normal file
View File

@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace CoopSweeper
{
public interface ICloneable<T> where T : ICloneable<T>
{
T Clone();
}
}