9 lines
129 B
C#
9 lines
129 B
C#
using System;
|
|
|
|
namespace UniRx
|
|
{
|
|
public interface ICancelable : IDisposable
|
|
{
|
|
bool IsDisposed { get; }
|
|
}
|
|
} |