12 lines
229 B
C#
12 lines
229 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class MainMenuMusic : MonoBehaviour
|
||
|
{
|
||
|
void Start()
|
||
|
{
|
||
|
AudioManager.PlaySound("", new Vector3(0f, 0f, 0f)).volume = 1f;
|
||
|
}
|
||
|
}
|