9 lines
189 B
C#
Raw Permalink Normal View History

2021-03-22 19:20:51 +08:00
namespace Mapbox.Unity.Telemetry
{
public interface ITelemetryLibrary
{
void Initialize(string accessToken);
void SendTurnstile();
void SetLocationCollectionState(bool enable);
}
}