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