Musica menú

This commit is contained in:
Gerard Gascón 2023-03-05 20:36:13 +01:00
parent 39597cfdff
commit 7504706c26
18 changed files with 420 additions and 157 deletions

View file

@ -0,0 +1,11 @@
using System.Collections;
using System.Collections.Generic;
using SimpleTools.AudioManager;
using UnityEngine;
public class MainMenu : MonoBehaviour{
// Start is called before the first frame update
void Start(){
AudioManager.instance.Play("menu");
}
}