From efaf3ee8f5a435ed4d154aa1145b5ed9d7f9bffb Mon Sep 17 00:00:00 2001 From: neuecc Date: Mon, 18 May 2020 23:36:26 +0900 Subject: [PATCH] IAsyncReadOnlyReactiveProperty.WithoutCurrent --- .../Assets/Plugins/UniTask/Runtime/AsyncReactiveProperty.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/UniTask/Assets/Plugins/UniTask/Runtime/AsyncReactiveProperty.cs b/src/UniTask/Assets/Plugins/UniTask/Runtime/AsyncReactiveProperty.cs index 1866ce6..4e51e43 100644 --- a/src/UniTask/Assets/Plugins/UniTask/Runtime/AsyncReactiveProperty.cs +++ b/src/UniTask/Assets/Plugins/UniTask/Runtime/AsyncReactiveProperty.cs @@ -7,6 +7,7 @@ namespace Cysharp.Threading.Tasks public interface IAsyncReadOnlyReactiveProperty : IUniTaskAsyncEnumerable { T Value { get; } + IUniTaskAsyncEnumerable WithoutCurrent(); } public interface IAsyncReactiveProperty : IAsyncReadOnlyReactiveProperty