1
0
mirror of synced 2024-11-14 17:13:50 +00:00
FSFlightLogger/FlightLoggerLib/IFlightLogger.cs
Mark van Renswoude d6fbff68af Implemented UI
Added detection of sim running and paused states
Added rudimentary live KML option (needs more styling)
2020-09-09 21:20:42 +02:00

23 lines
486 B
C#

using System;
using System.Threading.Tasks;
namespace FlightLoggerLib
{
public class FlightPosition
{
public float Latitude { get; set; }
public float Longitude { get; set; }
public float Altitude { get; set; }
public float Airspeed { get; set; }
}
public interface IFlightLogger : IAsyncDisposable
{
Task NewLog();
Task LogPosition(DateTime eventTime, FlightPosition position);
//void LogEvent
}
}