Files
VR-WuKong/Assets/Mirror/Core/NetworkWriterPooled.cs

11 lines
285 B
C#
Raw Normal View History

2025-11-13 17:40:28 +08:00
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);
}
}