complete project with 4x4 table function
This commit is contained in:
parent
ae3370ac44
commit
9cb42200f3
130 changed files with 3706 additions and 2 deletions
17
Chaser/ChaserWinForms/Form1.cs
Normal file
17
Chaser/ChaserWinForms/Form1.cs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue