minesweeper_game/Library/PackageCache/com.unity.purchasing@649c6c7b3b1b/Editor/WebRequest/Interface/IWebRequest.cs
2025-03-15 14:30:26 -04:00

23 lines
699 B
C#

using System;
using UnityEngine.Networking;
namespace UnityEditor.Purchasing
{
/// <summary>
/// This is an internal API.
/// We recommend that you do not use it as it will be removed in a future release.
/// </summary>
[Obsolete("Internal API, it will be removed soon.")]
public interface IWebRequest
{
/// <summary>
/// This is an internal API.
/// We recommend that you do not use it as it will be removed in a future release.
/// </summary>
/// <param name="uri"></param>
/// <returns></returns>
[Obsolete("Internal API, it will be removed soon.")]
UnityWebRequest BuildWebRequest(string uri);
}
}