diff --git a/.gitignore b/.gitignore index 73ffb59..1c69b2f 100644 --- a/.gitignore +++ b/.gitignore @@ -56,6 +56,8 @@ coverage.xml *.cover .hypothesis/ .pytest_cache/ +.idea +.idea/* # Translations *.mo diff --git a/kelner/main.py b/kelner/main.py index 0931ebd..f6d913f 100644 --- a/kelner/main.py +++ b/kelner/main.py @@ -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