예제 #1
0
 public CurrentTrickState(List <string> playeIds, ServerLocalCache slc)
 {
     serverLocalCache = slc;
     ShowedCards      = new Dictionary <string, List <int> >();
     foreach (string playeId in playeIds)
     {
         ShowedCards.Add(playeId, new List <int>());
     }
 }
예제 #2
0
 //第一个出牌的玩家
 public CurrentTrickState()
 {
     ShowedCards      = new Dictionary <string, List <int> >();
     serverLocalCache = new ServerLocalCache();
 }