Files
2025-08-13 09:26:42 +08:00

10 lines
112 B
C#

using System;
namespace UniRx
{
public interface ICancelable : IDisposable
{
bool IsDisposed { get; }
}
}