コード例 #1
0
ファイル: MainGameForm.cs プロジェクト: tay1392/Backgammon
 public void WaitingForDiceRoll()
 {
     InfoLabel.Text = Game.CurrentPerson.ToString() + " - Roll the dice";
     if (Game.CurrentPerson.IsAI)
     {
         DiceButton.Enabled = false;
         DiceTimer.Start();
     }
     else
     {
         DiceButton.Enabled = true;
     }
 }
コード例 #2
0
 /// <summary>
 /// Disables RollButton, initializes counter as 0, starts DiceTimer.
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void RollButton_Click(object sender, EventArgs e)
 {
     RollButton.Enabled = false;
     counter            = 0;
     DiceTimer.Start();
 }//end of RollButton