示例#1
0
 public ShuffleCommand(CardsMgr cardsMgr)
     : base(cardsMgr)
 {
 }
示例#2
0
 public DealCommand(CardsMgr cardsMgr, Player player, uint getNumb)
     : base(cardsMgr)
 {
     _player  = player;
     _getNumb = getNumb;
 }
示例#3
0
 public Command(CardsMgr cardsMgr)
 {
     _cardsMgr = cardsMgr;
 }
示例#4
0
 public InitCardCommand(CardsMgr cardsMgr)
     : base(cardsMgr)
 {
 }
示例#5
0
 public PlayCardCommand(Card play_card, CardsMgr cardsMgr)
     : base(cardsMgr)
 {
 }
示例#6
0
 public SupplementCommand(CardsMgr cardsMgr) : base(cardsMgr)
 {
 }