1
0
Fork 0
This commit is contained in:
Adam Wojdyla 2020-03-23 23:47:44 +01:00
parent b6dac34e87
commit b9f720e0c7
2 changed files with 4 additions and 1 deletions

2
.gitignore vendored
View File

@ -56,6 +56,8 @@ coverage.xml
*.cover
.hypothesis/
.pytest_cache/
.idea
.idea/*
# Translations
*.mo

View File

@ -1,4 +1,5 @@
import pygame
from src.components.GridBoard import GridBoard
from src.components.Waiter import Waiter
@ -15,7 +16,7 @@ gridBoard = GridBoard(ScreenWidth, ScreenHeight, CellSize)
#initialize waiter component
waiter = Waiter(1, 1, 0, GridCountX - 1, 0, GridCountY - 1, CellSize)
#
#loop
doRepaint = True
running = True