SquareDash/Library/PackageCache/com.unity.services.mediation@1.0.5/Runtime/Api/Internal/IMediationServiceImpl.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01:00

12 lines
254 B
C#

using System.Threading.Tasks;
namespace Unity.Services.Mediation
{
interface IMediationServiceImpl : IMediationService
{
Task Initialize(string gameId, string installId);
InitializationState InitializationState { get; }
}
}