rectangle is tested

This commit is contained in:
2019-10-25 11:29:29 -06:00
parent 93b22ef2ec
commit ada7171a9d
6 changed files with 201 additions and 23 deletions

10
Shapes/IFileIO.cs Normal file
View File

@@ -0,0 +1,10 @@
using System.IO;
namespace Shapes
{
public interface IFileIO
{
void SaveShape(Stream stream, Shape shape);
T GetShapeFromFile<T>(Stream stream);
}
}