added async stone detection thread

This commit is contained in:
2023-07-24 13:22:44 +02:00
parent f35fe32264
commit 687218e29d
3 changed files with 67 additions and 184 deletions

View File

@@ -13,7 +13,7 @@ class Field():
else:
self.state = [[' ' for cols in range(Field.WIDTH)]
for rows in range(Field.HEIGHT)]
self.rotate_90_degree_clckwise(self.state)
#self.rotate_90_degree_clckwise(self.state)
self.cleared_rows = 1
def __str__(self):