Files
2025-12-17 01:46:24 +08:00

7 lines
136 B
C#

using UnityEngine;
namespace Services.Interfaces {
public interface IAudioService {
void PlaySound(AudioClip clip);
}
}