Files
FueraDeEscala/Assets/Game Kit Controller/Scripts/Audio/IExternalAudioPlayer.cs
Robii Aragon 779f2c8b20 add ckg
plantilla base para movimiento básico
2026-02-05 05:07:55 -08:00

18 lines
452 B
C#

using UnityEngine;
namespace GameKitController.Audio
{
public interface IExternalAudioPlayer
{
void Play (AudioElement audioElement, GameObject gameObj);
void PlayOneShot (AudioElement audioElement, GameObject gameObj, float volumeScale = 1.0f);
void Stop (AudioElement audioElement, GameObject gameObj);
void Pause (AudioElement audioElement, GameObject gameObj);
void UnPause (AudioElement audioElement, GameObject gameObj);
}
}