Example #1
0
 private void InitialPokerShow()
 {
     for (int i = 0; i < 3; i++)
     {
         PokersShow.Add(new Card(0, "", ""));
     }
 }
Example #2
0
 /// <summary>
 /// 清空座位每局数据
 /// </summary>
 public override void ClearSeatInfo()
 {
     Pokers = null;
     PokersShow.Clear();
     InitialPokerShow();
     PreChipInAmount     = 0;
     PreChipType         = EChipinType.Nothing;
     IsChipIned          = false;
     IsLooked            = false;
     IsGaveUp            = false;
     PlayerIdWhichCanSee = 0;
     PokerOtherCanSee    = null;
 }