You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
271 B
C#

using UnityEngine;
using System.Collections;
namespace Suimono.Core
{
public class fx_soundModule : MonoBehaviour {
public int maxSounds = 10;
public AudioClip abovewaterSound;
public AudioClip underwaterSound;
public AudioClip[] defaultSplashSound;
}
}