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