neuropercolation/src/cellular_automaton/ca_cell.py

8 lines
187 B
Python
Raw Normal View History

2018-12-01 19:37:18 +00:00
class Cell:
def __init__(self, name: str):
self.name = name
self.neighbours = []
2018-12-01 14:14:22 +00:00
2018-12-01 19:37:18 +00:00
def set_neighbours(self, neighbours: list):
self.neighbours = neighbours