コード例 #1
0
ファイル: GameSession.cs プロジェクト: AndOr0812/Tarneeb
 /// <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;
 }
コード例 #2
0
ファイル: GameSession.cs プロジェクト: shahboura/Tarneeb
 /// <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;
 }