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(); }
private void SetLastDiceInfo(int curr) { LastDice = curr; LastDiceView = DiceUnicode.GetUnicode(LastDice).ToString(); }
private void SetLastDiceInfo(IPlayerModel curr) { LastDice = curr.LastDice; LastDiceView = DiceUnicode.GetUnicode(LastDice).ToString(); }