splitter/Splitter-UI/Services/IBufferPool.cs

6 lines
108 B
C#

namespace Splitter_UI.Services;
public interface IBufferPool
{
BufferPool.Entry Get(int w, int h);
}