コード例 #1
0
 public void Roll()
 {
     if (!Locked)
     {
         this.Value = Rand.GetByte();
     }
 }
コード例 #2
0
 public Die()
 {
     this.Value = Rand.GetByte();
 }
コード例 #3
0
 public Die(byte position)
 {
     this.Value = Rand.GetByte();
     Position   = position;
 }