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