Finished up game

This commit is contained in:
maxwes08
2026-02-03 13:44:30 +01:00
parent df6832419f
commit 46816d3dbf
5 changed files with 105 additions and 24 deletions

View File

@@ -45,14 +45,14 @@
// timer
//
timer.Enabled = true;
timer.Interval = 500;
timer.Interval = 200;
timer.Tick += timer_Tick;
//
// Form1
//
AutoScaleDimensions = new SizeF(10F, 25F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
ClientSize = new Size(800, 688);
Controls.Add(gamearea);
Name = "Form1";
Text = "Form1";
@@ -63,7 +63,7 @@
}
#endregion
private System.Windows.Forms.Timer timer;
public PictureBox gamearea;
public System.Windows.Forms.Timer timer;
}
}