This commit is contained in:
Wiktor Szynaka 2023-03-11 08:21:09 +01:00
commit ffaedf6979
2 changed files with 22 additions and 0 deletions

4
gameEventHandler.py Normal file
View File

@ -0,0 +1,4 @@
import pygame
def handle_game_event(event):
return

18
main.py Normal file
View File

@ -0,0 +1,18 @@
import pygame
from gameEventHandler import handle_game_event
pygame.init()
canvas = pygame.display.set_mode((800, 800))
pygame.display.set_caption("Inteligentna śmieciarka")
exit = False
while not exit:
for event in pygame.event.get():
if event.type == pygame.QUIT:
exit = True
else:
handle_game_event(event)
pygame.display.update()