SquareDash/Library/PackageCache/com.unity.services.analytics@4.3.0/Runtime/Platform/DeviceIdentifiers.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01:00

16 lines
309 B
C#

using System;
using UnityEngine;
namespace Unity.Services.Analytics.Platform
{
interface IIDeviceIdentifiersInternal
{
string Idfv { get; }
}
class DeviceIdentifiersInternal : IIDeviceIdentifiersInternal
{
public string Idfv => SystemInfo.deviceUniqueIdentifier;
}
}