fix ReactiveProperty implements IAsyncReactiveProperty

master
neuecc 2020-05-17 16:51:10 +09:00
parent 957adfad7a
commit 1729f389db
1 changed files with 1 additions and 1 deletions

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;