diff --git a/faustao_invader.py b/faustao_invader.py index ef293ef..973209e 100644 --- a/faustao_invader.py +++ b/faustao_invader.py @@ -12,6 +12,10 @@ def run_game(): pygame.init() fi_settings = Settings() + #Lendo a musica de fundo + musica_de_fundo = pygame.mixer.music.load('rap_do_ovo.ogg') + pygame.mixer.music.play(-1) + #Obtendo confs da tela screen = pygame.display.set_mode((fi_settings.screen_width,fi_settings.screen_height)) diff --git a/rap_do_ovo.ogg b/rap_do_ovo.ogg new file mode 100644 index 0000000..d5be174 Binary files /dev/null and b/rap_do_ovo.ogg differ