First scren BABBBYYYYY

This commit is contained in:
2025-06-13 21:07:17 +01:00
parent aec6c7135b
commit d7a35025d8

View File

@ -1,2 +1,22 @@
import pygame import pygame
screenx = 1280
screeny = 720
pygame.init()
screen = pygame.display.set_mode((screenx,screeny))
clock = pygame.time.Clock()
running = True #you better start running...
while running:
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
screen.fill("black")
pygame.display.flip()
clock.tick(60)
pygame.quit()