inital commit

This commit is contained in:
2022-07-16 23:13:36 +12:00
commit 5ae6430d0e
8 changed files with 189 additions and 0 deletions

8
audio.py Executable file
View File

@@ -0,0 +1,8 @@
import pygame
pygame.mixer.init()
pygame.mixer.music.load("morninggarden.mp3")
pygame.mixer.music.set_volume(0.5)
pygame.mixer.music.play()
while pygame.mixer.music.get_busy() == True:
continue