Brad Stein 69a8022f22
Add files via upload
had removed passive method as it is not used, where as a setup method will probably be
2017-12-30 22:44:48 -06:00

8 lines
138 B
Python

from table.supply import Supply
from random import shuffle
class Deck(Supply):
def shuffle(self):
shuffle(self._Supply__card)