FlappyBirdMP/Assets/Mirror/Core/NetworkWriterPooled.cs
2025-06-23 00:38:12 +05:30

11 lines
285 B
C#

using System;
namespace Mirror
{
/// <summary>Pooled NetworkWriter, automatically returned to pool when using 'using'</summary>
public sealed class NetworkWriterPooled : NetworkWriter, IDisposable
{
public void Dispose() => NetworkWriterPool.Return(this);
}
}