Add Audio

This commit is contained in:
2025-12-17 01:46:24 +08:00
parent 3786863b00
commit 9f2ef833b2
12 changed files with 116 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
using UnityEngine;
namespace Services.Interfaces {
public interface IAudioService {
void PlaySound(AudioClip clip);
}
}