Obroty kelnera (grafika i algorytm A*), tooltip z liczbą zamówień. #11

Merged
s444417 merged 6 commits from mikolaj_branch into master 2020-04-27 12:39:59 +02:00
2 changed files with 4 additions and 1 deletions
Showing only changes of commit b9f720e0c7 - Show all commits

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