Nerfed/Nerfed.Runtime/Audio/IPoolable.cs

6 lines
128 B
C#
Raw Permalink Normal View History

namespace Nerfed.Runtime.Audio;
public interface IPoolable<T>
{
static abstract T Create(AudioDevice device, Format format);
}