1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
using System; using UnityEngine; namespace XUtliPoolLib { public interface IXFmodBus : IXInterface { void SetBusVolume(string bus, float volume); void SetMainVolume(float volume); void SetBGMVolume(float volume); void SetSFXVolume(float volume); void PlayOneShot(string key, Vector3 pos); void StartEvent(string key); void StopEvent(); } }