starting to recreate the wallbreacker

This commit is contained in:
2025-04-10 14:45:38 +02:00
parent b6f8941c53
commit bdfc464080
2 changed files with 41 additions and 0 deletions

14
pygame/jeu/niveau.py Normal file
View File

@@ -0,0 +1,14 @@
class Niveau:
def __init__(self) -> None:
self.b1 = balle.Balle()
self.r1 = raquette.Raquette()
self.m1 = murdebrique.Wall()
def affiche(self,ecran):
ecran.fill(BLANC)
self.b1.affiche(ecran)
self.r1.affiche(ecran)
self.m1.affiche(ecran)
def levelmanager():
for event in pygame.