LaboratoryProtection/Assets/Plugins/UniRx/Scripts/Disposables/ICancelable.cs

12 lines
183 B
C#
Raw Permalink Normal View History

2023-09-12 15:55:51 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace UniRx
{
public interface ICancelable : IDisposable
{
bool IsDisposed { get; }
}
}