forked from s444417/ProjektAI
test
This commit is contained in:
parent
b6dac34e87
commit
b9f720e0c7
2
.gitignore
vendored
2
.gitignore
vendored
@ -56,6 +56,8 @@ coverage.xml
|
|||||||
*.cover
|
*.cover
|
||||||
.hypothesis/
|
.hypothesis/
|
||||||
.pytest_cache/
|
.pytest_cache/
|
||||||
|
.idea
|
||||||
|
.idea/*
|
||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
*.mo
|
*.mo
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import pygame
|
import pygame
|
||||||
|
|
||||||
from src.components.GridBoard import GridBoard
|
from src.components.GridBoard import GridBoard
|
||||||
from src.components.Waiter import Waiter
|
from src.components.Waiter import Waiter
|
||||||
|
|
||||||
@ -15,7 +16,7 @@ gridBoard = GridBoard(ScreenWidth, ScreenHeight, CellSize)
|
|||||||
|
|
||||||
#initialize waiter component
|
#initialize waiter component
|
||||||
waiter = Waiter(1, 1, 0, GridCountX - 1, 0, GridCountY - 1, CellSize)
|
waiter = Waiter(1, 1, 0, GridCountX - 1, 0, GridCountY - 1, CellSize)
|
||||||
|
#
|
||||||
#loop
|
#loop
|
||||||
doRepaint = True
|
doRepaint = True
|
||||||
running = True
|
running = True
|
||||||
|
Loading…
Reference in New Issue
Block a user