From 71d4b272aee79c272e0a842628723e945e6a3e2b Mon Sep 17 00:00:00 2001 From: Tango Date: Fri, 13 Jun 2025 21:41:03 +0100 Subject: [PATCH] Added gun sfx --- __main__.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/__main__.py b/__main__.py index 172d5c3..4380c19 100644 --- a/__main__.py +++ b/__main__.py @@ -4,6 +4,11 @@ screenx = 1280 screeny = 720 pygame.init() + +#Sounds for the gun :3 +GunBlank = pygame.mixer.Sound("sfx/gun-blank.mp3") +GunShot = pygame.mixer.Sound("sfx/gun-shot.mp3") + screen = pygame.display.set_mode((screenx,screeny)) clock = pygame.time.Clock() running = True #you better start running...