TH1/Unity/Assets/Scripts/ThirdParty/NativeCollection/INativeCollectionClass.cs
2025-07-17 18:26:28 +08:00

13 lines
174 B
C#

using System;
namespace NativeCollection
{
public interface INativeCollectionClass : IDisposable
{
void ReInit();
bool IsDisposed { get; }
}
}