namespace NahidaImpact.Kcp { /// /// The buffer pool to rent buffers from. /// public interface IKcpBufferPool { /// /// Rent a buffer using the specified options. /// /// The options used to rent this buffer. /// KcpRentedBuffer Rent(KcpBufferPoolRentOptions options); } }