Files
M-Gameton-06/Gameton-06/Assets/Plugins/UniRx/Scripts/Disposables/ICancelable.cs
2025-06-02 00:27:36 +09:00

12 lines
183 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace UniRx
{
public interface ICancelable : IDisposable
{
bool IsDisposed { get; }
}
}