diff --git a/About/screenshot-2018-06-09-a.png b/About/screenshot-2018-06-09-a.png new file mode 100644 index 0000000..ef07f0e Binary files /dev/null and b/About/screenshot-2018-06-09-a.png differ diff --git a/Chase.GUI/GameForm.cs b/Chase.GUI/GameForm.cs index 9b1ac69..e948a1c 100644 --- a/Chase.GUI/GameForm.cs +++ b/Chase.GUI/GameForm.cs @@ -63,6 +63,7 @@ public GameForm() RefreshBoard(); gameTimer.Start(); + StartNewGame(); } private void selfPlayToolStripMenuItem_Click(object sender, EventArgs e) @@ -137,6 +138,11 @@ private void testToolStripMenuItem_Click(object sender, EventArgs e) } private void newGameToolStripMenuItem_Click(object sender, EventArgs e) + { + StartNewGame(); + } + + private void StartNewGame() { type = GameType.ComputerVsHuman; diff --git a/README.md b/README.md index 5ff3b22..8116984 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # chase-ai -An engine for playing the game of chase (not chess). +An engine for playing the game of chase. -![Example Screenshot](https://rawgit.com/skotz/chase-ai/master/About/screenshot-2016-12-17-a.png) +![Example Screenshot](https://rawgit.com/skotz/chase-ai/master/About/screenshot-2018-06-09-a.png) -For more information, see http://superdupergames.org/gameinfo.html?game=chase +For more information, read ![the rules](http://superdupergames.org/gameinfo.html?game=chase). -Scott Clayton 2016 \ No newline at end of file +Scott Clayton 2018 \ No newline at end of file