[NETSIM] rented array into struct

This commit is contained in:
wrenge 2024-11-12 16:01:35 +03:00
parent c0b916a0d1
commit c989276f5e
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ namespace DotRecast.Core.Buffers
}
}
public class RcRentedArray<T> : IDisposable
public struct RcRentedArray<T> : IDisposable
{
private ArrayPool<T> _owner;
private T[] _array;