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

Commit

Permalink
added Hurt Note support && clear dir feature
Browse files Browse the repository at this point in the history
  • Loading branch information
Spzabt-zz committed Oct 25, 2023
1 parent 9f17e65 commit 33fb97e
Show file tree
Hide file tree
Showing 2 changed files with 97 additions and 38 deletions.
125 changes: 87 additions & 38 deletions FNFBot20/Form1.Designer.cs

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

10 changes: 10 additions & 0 deletions FNFBot20/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
using FridayNightFunkin.Json;

namespace FNFBot20
{
Expand Down Expand Up @@ -167,5 +168,14 @@ private void checkBox1_CheckedChanged(object sender, EventArgs e)
pnlField.Controls.Clear();
}

private void hurtNoteChekBox_CheckedChanged(object sender, EventArgs e)
{
OnlyDecimalConverter.DisableHurtNotes = hurtNoteChekBox.Checked;
}

private void button3_Click(object sender, EventArgs e)
{
treSngSelect.Nodes.Clear();
}
}
}

0 comments on commit 33fb97e

Please sign in to comment.