fix ReactiveProperty implements IAsyncReactiveProperty

This commit is contained in:
neuecc
2020-05-17 16:51:10 +09:00
parent 957adfad7a
commit 1729f389db

View File

@@ -15,7 +15,7 @@ namespace Cysharp.Threading.Tasks
}
[Serializable]
public class AsyncReactiveProperty<T> : IUniTaskAsyncEnumerable<T>, IDisposable
public class AsyncReactiveProperty<T> : IAsyncReactiveProperty<T>, IDisposable
{
TriggerEvent<T> triggerEvent;