mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-14 05:44:34 +01:00
Init enter game
This commit is contained in:
14
KcpSharp/Base/IKcpBufferPool.cs
Normal file
14
KcpSharp/Base/IKcpBufferPool.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace KianaBH.KcpSharp.Base;
|
||||
|
||||
/// <summary>
|
||||
/// The buffer pool to rent buffers from.
|
||||
/// </summary>
|
||||
public interface IKcpBufferPool
|
||||
{
|
||||
/// <summary>
|
||||
/// Rent a buffer using the specified options.
|
||||
/// </summary>
|
||||
/// <param name="options">The options used to rent this buffer.</param>
|
||||
/// <returns></returns>
|
||||
KcpRentedBuffer Rent(KcpBufferPoolRentOptions options);
|
||||
}
|
||||
Reference in New Issue
Block a user