Beispiel #1
0
 /// <summary>
 /// Callback method to be called by the bidding object upon the completion
 /// of the bidding process. This method declares the winning bid and moves
 /// the state to the next state
 /// </summary>
 internal void BiddingComplete()
 {
     this.CurrentBid = bidding.Winner;
     Status          = GameSessionStatus.GamePlay;
     bidding         = null;
 }
Beispiel #2
0
 /// <summary>
 /// Callback method to be called by the bidding object upon the completion
 /// of the bidding process. This method declares the winning bid and moves
 /// the state to the next state
 /// </summary>
 internal void BiddingComplete()
 {
     CurrentBid = bidding.Winner;
     Status = GameSessionStatus.GamePlay;
     bidding = null;
 }