powerfun-unity/Assets/Mapbox/Unity/Location/ILocationProvider.cs
2021-03-30 17:27:50 +08:00

13 lines
275 B
C#

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