LaboratoryProtection/Assets/Plugins/UniRx/Scripts/Subjects/ISubject.cs

14 lines
286 B
C#
Raw Normal View History

2023-09-12 15:55:51 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace UniRx
{
public interface ISubject<TSource, TResult> : IObserver<TSource>, IObservable<TResult>
{
}
public interface ISubject<T> : ISubject<T, T>, IObserver<T>, IObservable<T>
{
}
}