Files
Nerfed/Nerfed.Runtime/Audio/IPoolable.cs
T

6 lines
128 B
C#

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