com.alicizax.unity.cysharp..../IResettableBufferWriter.cs
陈思海 4fbea560b5 init
2025-01-09 13:57:51 +08:00

13 lines
221 B
C#

using System;
using System.Buffers;
using System.Collections.Generic;
using System.Text;
namespace Cysharp.Text
{
public interface IResettableBufferWriter<T> : IBufferWriter<T>
{
void Reset();
}
}