6 lines
128 B
C#
6 lines
128 B
C#
|
namespace Nerfed.Runtime.Audio;
|
||
|
|
||
|
public interface IPoolable<T>
|
||
|
{
|
||
|
static abstract T Create(AudioDevice device, Format format);
|
||
|
}
|