namespace Mapbox.Unity.Location { using System; /// /// Implement ILocationProvider to send Heading and Location updates. /// public interface ILocationProvider { event Action OnLocationUpdated; Location CurrentLocation { get; } } }