17 lines
274 B
Python
17 lines
274 B
Python
|
import pygame
|
||
|
|
||
|
pygame.init()
|
||
|
|
||
|
largeur = 600
|
||
|
hauteur = 400
|
||
|
windowSurface = pygame.display.set_mode((largeur, hauteur), 0,32)
|
||
|
|
||
|
running = True
|
||
|
while running:
|
||
|
|
||
|
for event in pygame.event.get():
|
||
|
if event.type == pygame.QUIT:
|
||
|
running = False
|
||
|
|
||
|
pygame.quit()
|