?? die.cs
字號:
/* Author: Diane Corney
* Date: September, 2007
*/
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
using System.IO;
namespace Yahtzee {
class Die {
private int faceValue;
private bool active;
private Label label;
private static StreamReader rollFile;
private static Random random;
private const bool DEBUG = false;
public Die(Label label) {
}
public int FaceValue {
get {
return faceValue;
}
}
public bool Active {
get {
return active;
}
set {
active = value;
}
}
public void Roll() {
}
public void Load(Label label) {
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -