diff --git a/src/statebag.py b/src/statebag.py new file mode 100644 --- /dev/null +++ b/src/statebag.py @@ -0,0 +1,6 @@ +class StateBag: + def __init__(self): + self._states=[] + + def pushState(self,board): + self._states.append(board)