public void StartNewGame(GameInfo gameInfo, PlayerPosition position)
 {
     Console.Clear();
     this.Position = position;
     this.Game = gameInfo;
     this.Game.PlayerBid += this.GameOnPlayerBid;
     this.Game.CardPlayed += this.GameOnCardPlayed;
 }
 public void StartNewGame(GameInfo gameInfo, PlayerPosition position)
 {
     this.Position = position;
     this.Game = gameInfo;
 }
 public void StartNewGame(GameInfo gameInfo, PlayerPosition position)
 {
     this.Position = position;
     this.Game = gameInfo;
     this.otherBids.Clear();
     this.partnerBids.Clear();
     this.allBids.Clear();
     this.remainedInGame = CardsCollection.FullDeckOfCards.ToList();
     this.Game.CardPlayed += this.AddCardPlayed;
     this.Game.PlayerBid += this.AddBid;
     this.myPartnerBurst = null;
 }
 public void StartNewGame(GameInfo gameInfo, PlayerPosition position)
 {
     //throw new NotImplementedException();
 }
示例#5
0
 public void StartNewGame(GameInfo game, PlayerPosition position)
 {
     Console.Clear();
     this.Position = position;
     this.Game = game;
     this.Game.PlayerBid += this.Game_PlayerBid;
 }