1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

moved functionality to pysol-cards.py

This commit is contained in:
Shlomi Fish 2019-07-24 02:35:54 +03:00
parent 6dd98f5984
commit e1d461b78d

View file

@ -56,15 +56,6 @@ class BasicRandom(RandomBase):
ORIGIN_SELECTED = 3 # manually entered
ORIGIN_NEXT_GAME = 4 # "Next game number"
def getSeedStr(self):
return str(self.initial_seed)
def __str__(self):
return self.str(self.initial_seed)
def str(self, seed):
return '%020d' % seed
def reset(self):
raise SubclassResponsibility