private void ResetShamanScore(HSCounter hsc)
        {
            Shaman shaman = new Shaman();

            DialogResult shamanDialogResult = MessageBox.Show("Are you sure that you want to reset your shaman score to 0?", "Reset Shaman Score", MessageBoxButtons.YesNo);
            if (shamanDialogResult == DialogResult.Yes)
            {
                shaman.ResetButton_Clicked(hsc);
            }
        }