7 lines
136 B
C#
7 lines
136 B
C#
using UnityEngine;
|
|
|
|
namespace Services.Interfaces {
|
|
public interface IAudioService {
|
|
void PlaySound(AudioClip clip);
|
|
}
|
|
} |