9 lines
173 B
C#
9 lines
173 B
C#
using GameCore.Math;
|
|
|
|
namespace GameCore.Services;
|
|
|
|
public interface IAudioService
|
|
{
|
|
void Play(string soundId);
|
|
void PlayAtPoint(string soundId, Vector3 position);
|
|
} |