コード例 #1
0
 public MoveInfoExtended(MoveInfo p, String pName)
 {
     this.PlayerId   = p.PlayerId;
     this.GameId     = p.GameId;
     this.Dice       = p.Dice;
     this.Finished   = p.Finished;
     this.MeepleId   = p.MeepleId;
     this.PlayerName = pName;
     this.MoveId     = p.MoveId;
     DiceView        = DiceUnicode.GetUnicode(p.Dice).ToString();
 }
コード例 #2
0
 private void SetLastDiceInfo(int curr)
 {
     LastDice     = curr;
     LastDiceView = DiceUnicode.GetUnicode(LastDice).ToString();
 }
コード例 #3
0
 private void SetLastDiceInfo(IPlayerModel curr)
 {
     LastDice     = curr.LastDice;
     LastDiceView = DiceUnicode.GetUnicode(LastDice).ToString();
 }