UniRx 에셋 추가
This commit is contained in:
14
Gameton-06/Assets/Plugins/UniRx/Scripts/Subjects/ISubject.cs
Normal file
14
Gameton-06/Assets/Plugins/UniRx/Scripts/Subjects/ISubject.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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>
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user