Merge pull request 'daisplay game window' (#2) from pygame_setup into master
Reviewed-on: #2
This commit is contained in:
commit
c5e9a7de0c
4
gameEventHandler.py
Normal file
4
gameEventHandler.py
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
import pygame
|
||||||
|
|
||||||
|
def handle_game_event(event):
|
||||||
|
return
|
18
main.py
Normal file
18
main.py
Normal 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()
|
Loading…
Reference in New Issue
Block a user