2022-2023/1NSI/00_Projets/pygame_base.py
Bertrand Benjamin 8b44d00a76
All checks were successful
continuous-integration/drone/push Build is passing
Feat(NSI): définition du projet et ajoute intro à snake
2022-12-06 09:59:52 +01:00

31 lines
567 B
Python

# Importation de pygame
import pygame
pygame.init()
# Initialisation de la fenetre
largeur = 600
hauteur = 400
windowSurface = pygame.display.set_mode((largeur, hauteur), 0,32)
# Initialisation des parametres
# Boucle de jeu
clock = pygame.time.Clock()
running = True
while running:
# Limitation du nombre de tours de boucle par seconde.
clock.tick(10)
# Boucle des evenements
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
# Elements a tracer
pygame.display.update()
pygame.quit()