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>()); } }
//第一个出牌的玩家 public CurrentTrickState() { ShowedCards = new Dictionary <string, List <int> >(); serverLocalCache = new ServerLocalCache(); }