minesweeper_game/Library/PackageCache/com.unity.purchasing@649c6c7b3b1b/Runtime/Stores/Util/IRetryPolicy.cs
2025-03-15 14:30:26 -04: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);
}
}