Files
FlowScope/Packages/com.flowscope.gamecore/Runtime/Audio/IAudioHandle.cs
2026-06-04 14:54:49 +08:00

9 lines
147 B
C#

namespace FlowScope.Audio
{
public interface IAudioHandle
{
void Stop(float fadeOut = 0f);
bool IsPlaying { get; }
}
}