summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XUtliPoolLib/IXFmodBus.cs
blob: 77bdc69330a851742f8213c5bc48cf6bb7fd18c2 (plain)
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();
	}
}