Karnaugh-map/Chaser/ChaserWinForms/Form1.cs

18 lines
379 B
C#
Raw Normal View History

namespace ChaserWinForms
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
Painter = new PainterWinform(this.CreateGraphics());
}
private void button1_Click(object sender, EventArgs e)
{
Beast beast = new Beast(100, 100);
beast.Draw();
}
}
}