ICancelable.cs 183 B

1234567891011
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace UniRx
  5. {
  6. public interface ICancelable : IDisposable
  7. {
  8. bool IsDisposed { get; }
  9. }
  10. }