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