6 lines
108 B
Python
6 lines
108 B
Python
|
from __future__ import print_function
|
||
|
|
||
|
class GameState(object):
|
||
|
def __init__(self, statefile=None):
|
||
|
pass
|