This commit is contained in:
2025-06-13 21:41:11 +01:00
2 changed files with 5 additions and 0 deletions

View File

@ -1,7 +1,9 @@
import pygame
from random import randint
screenx = 1280
screeny = 720
yOffset = 0
pygame.init()
@ -20,6 +22,9 @@ while running:
screen.fill("black")
fireButton = pygame.Rect(0,0,300,100)
pygame.draw.rect(screen, (30,30,30), fireButton)
pygame.display.flip()
clock.tick(60)