IRetryPolicy.cs 151 B

12345678
  1. using System;
  2. namespace UnityEngine.Purchasing.Stores.Util
  3. {
  4. interface IRetryPolicy
  5. {
  6. void Invoke(Action<Action> actionToTry);
  7. }
  8. }