Compare commits

..

No commits in common. "c5e9a7de0c57fb172ed33d7ddfc270176ea0d478" and "3ad6a27a745a4230fc7f2def33a08f66fcd6336f" have entirely different histories.

2 changed files with 0 additions and 22 deletions

View File

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

18
main.py
View File

@ -1,18 +0,0 @@
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()