SquareDash/Library/PackageCache/com.unity.purchasing@4.10.0/Runtime/Stores/Util/IRetryPolicy.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01:00

11 lines
199 B
C#

#nullable enable
using System;
namespace UnityEngine.Purchasing.Stores.Util
{
interface IRetryPolicy
{
void Invoke(Action<Action> actionToTry, Action? onRetryAction = null);
}
}