Açıklama Yok
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IRetryPolicy.cs 199B

12345678910
  1. #nullable enable
  2. using System;
  3. namespace UnityEngine.Purchasing.Stores.Util
  4. {
  5. interface IRetryPolicy
  6. {
  7. void Invoke(Action<Action> actionToTry, Action? onRetryAction = null);
  8. }
  9. }