1234567891011121314151617 |
- using UnityEngine;
- using System.Collections;
- public class SoundManager : MonoBehaviour {
- public static SoundManager Instance ;
- public AudioClip ClipGameOver;
- // Use this for initialization
- void Start () {
- Instance = this;
- }
-
- // Update is called once per frame
- void GameOver () {
-
- }
- }
|