countingcombination.cs

来自「一个Csharp游戏 GUI based .NET application」· CS 代码 · 共 23 行

CS
23
字号
/* Author:  Diane Corney
 * Date:    September, 2007
 */
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;

namespace Yahtzee {

    class CountingCombination : Combination {
        private int dieValue;

        public CountingCombination(ScoreType scoreType, Label label)
            : base(label) {
            dieValue = (int)scoreType + 1;
        }

        public override void CalculateScore(int[] diceValues) {
        }
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?