Skip to content
This repository has been archived by the owner on Mar 9, 2023. It is now read-only.

Commit

Permalink
fixed event farm counter
Browse files Browse the repository at this point in the history
  • Loading branch information
MgAl2O4 committed Jan 27, 2021
1 parent 556aca8 commit 4a00bbb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions SINoCOLO/MainForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions SINoCOLO/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,11 @@ private void topPanelClick(object sender, EventArgs e)
}
}

private void checkBoxClicks_CheckedChanged(object sender, EventArgs e)
{
gameLogic.canClick = checkBoxClicks.Checked;
}

private void pictureBoxAnalyzed_MouseMove(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
Expand Down
4 changes: 2 additions & 2 deletions SINoCOLO/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("17.0.0.0")]
[assembly: AssemblyFileVersion("17.0.0.0")]
[assembly: AssemblyVersion("18.0.0.0")]
[assembly: AssemblyFileVersion("18.0.0.0")]

0 comments on commit 4a00bbb

Please sign in to comment.