Karnaugh-map/Chaser/ChaserLibrary/IPaintable.cs

16 lines
311 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ChaserLibrary
{
public interface IPaintable
{
public void PaintCircle(double X, double Y, int radius);
public void PaintCross(double X, double Y);
}
}