2017-12-30 12:15:51 -06:00

9 lines
177 B
Python

from table.supply import Supply
class Discard(Supply):
def cycle_card(self, deck):
while self.get_remaining() > 0:
self.transfer_top_card(deck)
deck.shuffle()