From e24064570f1cea190c4a599c17b703cee71f4a91 Mon Sep 17 00:00:00 2001 From: Brosef Date: Fri, 13 Jun 2025 21:24:44 +0100 Subject: [PATCH 1/2] Renamed rovolver-spin.mp3 to fit the nameing convension --- sfx/{revolver-spin.mp3 => gun-spin.mp3} | Bin 1 file changed, 0 insertions(+), 0 deletions(-) rename sfx/{revolver-spin.mp3 => gun-spin.mp3} (100%) diff --git a/sfx/revolver-spin.mp3 b/sfx/gun-spin.mp3 similarity index 100% rename from sfx/revolver-spin.mp3 rename to sfx/gun-spin.mp3 From 6ef6a1eea0ecd1ab5be22a3d3f5717aca34d8191 Mon Sep 17 00:00:00 2001 From: TRS_MML Date: Fri, 13 Jun 2025 21:31:37 +0100 Subject: [PATCH 2/2] started work work on fire button and yOffset system --- __main__.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/__main__.py b/__main__.py index 172d5c3..e5c7646 100644 --- a/__main__.py +++ b/__main__.py @@ -1,7 +1,9 @@ import pygame +from random import randint screenx = 1280 screeny = 720 +yOffset = 0 pygame.init() screen = pygame.display.set_mode((screenx,screeny)) @@ -15,6 +17,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)