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

9 lines
175 B
C#

namespace FlowScope.Audio
{
public sealed class AudioServiceConfig
{
public int SfxPoolSize = 10;
public bool ReuseOldestWhenExhausted = true;
}
}