mirror of
https://github.com/neogeek23/Dominion-Strategy-Simulator.git
synced 2026-02-04 19:18:18 +00:00
8 lines
138 B
Python
8 lines
138 B
Python
from table.supply import Supply
|
|
from random import shuffle
|
|
|
|
|
|
class Deck(Supply):
|
|
def shuffle(self):
|
|
shuffle(self._Supply__card)
|