powerfun-unity/Assets/Mapbox/Unity/Telemetry/ITelemetryLibrary.cs
2021-03-30 17:27:50 +08:00

9 lines
189 B
C#

namespace Mapbox.Unity.Telemetry
{
public interface ITelemetryLibrary
{
void Initialize(string accessToken);
void SendTurnstile();
void SetLocationCollectionState(bool enable);
}
}