Files @ b197a19e4afe
Branch filter:

Location: OneEye/src/statebag.py

Laman
chaining the states to a record
1
2
3
4
5
6
class StateBag:
	def __init__(self):
		self._states=[]

	def pushState(self,board):
		self._states.append(board)