Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created November 5, 2020 23:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/4b46b84bdce263815ae79b46f3db439c to your computer and use it in GitHub Desktop.
Save parzibyte/4b46b84bdce263815ae79b46f3db439c to your computer and use it in GitHub Desktop.
# Colores
color_blanco = (255, 255, 255)
color_negro = (0, 0, 0)
color_gris = (206, 206, 206)
color_azul = (30, 136, 229)
# Los sonidos
sonido_fondo = pygame.mixer.Sound("assets/fondo.wav")
sonido_clic = pygame.mixer.Sound("assets/clic.wav")
sonido_exito = pygame.mixer.Sound("assets/ganador.wav")
sonido_fracaso = pygame.mixer.Sound("assets/equivocado.wav")
sonido_voltear = pygame.mixer.Sound("assets/voltear.wav")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment