Brad Stein 94d2e58214
Add files via upload
Refactored card typing to no longer be a piece of data but a feature of the object structure.
2018-01-10 14:01:44 -05:00

11 lines
197 B
Python

from table.supply import Supply
class Pile(Supply):
def __init__(self, card):
self.__card_group = card
Supply.__init__(self)
def get_card_group(self):
return self.__card_group