You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
438 B
29 lines
438 B
namespace Mapbox.Unity.Telemetry
|
|
{
|
|
public class TelemetryDummy : ITelemetryLibrary
|
|
{
|
|
static ITelemetryLibrary _instance = new TelemetryDummy();
|
|
public static ITelemetryLibrary Instance
|
|
{
|
|
get
|
|
{
|
|
return _instance;
|
|
}
|
|
}
|
|
|
|
public void Initialize(string accessToken)
|
|
{
|
|
// empty.
|
|
}
|
|
|
|
public void SendTurnstile()
|
|
{
|
|
// empty.
|
|
}
|
|
|
|
public void SetLocationCollectionState(bool enable)
|
|
{
|
|
// empty.
|
|
}
|
|
}
|
|
}
|
|
|