Files
badeend-go/Assets/Mapbox SDK/Mapbox/Unity/Location/UnityLocationWrappers/IMapboxLocationService.cs

23 lines
315 B
C#

namespace Mapbox.Unity.Location
{
using UnityEngine;
public interface IMapboxLocationService
{
bool isEnabledByUser { get; }
LocationServiceStatus status { get; }
IMapboxLocationInfo lastData { get; }
void Start(float desiredAccuracyInMeters, float updateDistanceInMeters);
void Stop();
}
}