From 1729f389db2b6025dfaebf9d75d7bdb946df0fbc Mon Sep 17 00:00:00 2001 From: neuecc Date: Sun, 17 May 2020 16:51:10 +0900 Subject: [PATCH] fix ReactiveProperty implements IAsyncReactiveProperty --- .../Assets/Plugins/UniTask/Runtime/AsyncReactiveProperty.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UniTask/Assets/Plugins/UniTask/Runtime/AsyncReactiveProperty.cs b/src/UniTask/Assets/Plugins/UniTask/Runtime/AsyncReactiveProperty.cs index b6bb90e..21963e5 100644 --- a/src/UniTask/Assets/Plugins/UniTask/Runtime/AsyncReactiveProperty.cs +++ b/src/UniTask/Assets/Plugins/UniTask/Runtime/AsyncReactiveProperty.cs @@ -15,7 +15,7 @@ namespace Cysharp.Threading.Tasks } [Serializable] - public class AsyncReactiveProperty : IUniTaskAsyncEnumerable, IDisposable + public class AsyncReactiveProperty : IAsyncReactiveProperty, IDisposable { TriggerEvent triggerEvent;