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.
30 lines
438 B
30 lines
438 B
1 year ago
|
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.
|
||
|
}
|
||
|
}
|
||
|
}
|