Skip to content

Commit

Permalink
- Started adding set of all created cells which will be used to do ce…
Browse files Browse the repository at this point in the history
…ll highlighting
  • Loading branch information
AngelVI13 committed Apr 29, 2019
1 parent b7a2f03 commit 993ae99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gui/app.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import time
from functools import total_ordering

import pygame
Expand Down Expand Up @@ -39,7 +38,8 @@ class GuiBoard:
PLAYER_O: BLUE,
}

clicked_cells = set() # a set of all created cells
clicked_cells = set() # a set of all clicked cells
all_cells = set() # a set of all created cells

def __init__(self):
pygame.init()
Expand Down

0 comments on commit 993ae99

Please sign in to comment.