Example #1
0
 private void RunDeal()
 {
     _table.ReadFromFile();
     _actionRange = new ActionRange();
     _actionRange.Shuffle();
     heroCards = _actionRange.DealHeroCards();
     _actionRange.ShowHeroCards(heroCards, LabelSeat4FirstCard, LabelSeat4SecondCard);
 }
Example #2
0
 public Save(Table table, ActionRange range, string path)
 {
     _table = table;
     _range = range;
     ToFile(path);
 }