lib_unity_purchase/Editor/WebRequest/Interface/IWebRequestInternal.cs

11 lines
181 B
C#
Raw Permalink Normal View History

2024-01-29 18:49:33 +08:00
using System;
using UnityEngine.Networking;
namespace UnityEditor.Purchasing
{
interface IWebRequestInternal
{
UnityWebRequest BuildWebRequest(string uri);
}
}