1
0
forked from s434673/AI_Waiter

Initialize basic board

This commit is contained in:
s450026 2020-03-23 20:55:52 +01:00
parent 883422a3f7
commit 6a034ee8d7
3 changed files with 33 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
.DS_Store
.idea
bin
venv
.venv

28
src/main.py Normal file
View File

@ -0,0 +1,28 @@
import sys
import pygame
pygame.init()
screen = pygame.display.set_mode((960, 720))
done = False
block_size = 60
WHITE = (255, 255, 255)
BLUE = (0, 0, 255)
screen.fill(WHITE)
def main():
for y in range(400):
for x in range(300):
rect = pygame.Rect(x * block_size, y * block_size, block_size - 1, block_size - 1)
pygame.draw.rect(screen, BLUE, rect)
while not done:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
sys.exit()
pygame.display.update()
main()

0
try
View File