Files
brick-framework/GameCore/Services/IAudioService.cs

9 lines
173 B
C#

using GameCore.Math;
namespace GameCore.Services;
public interface IAudioService
{
void Play(string soundId);
void PlayAtPoint(string soundId, Vector3 position);
}