Exemplo n.º 1
0
 def select(self):
     self.status = True
     self.color = 'blue'
     window.display_cell(self)
Exemplo n.º 2
0
 def unselect(self):
     self.status = False
     self.color = 'grey'
     window.display_cell(self)
Exemplo n.º 3
0
 def show_all_cells(self):
     for smart_cell in self.smart_cells:
         window.display_cell(smart_cell)