mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
11 lines
201 B
TypeScript
11 lines
201 B
TypeScript
import { LatLng } from "leaflet";
|
|
import { Waypoint } from "./waypoint";
|
|
|
|
export interface Flight {
|
|
id: string;
|
|
blue: boolean;
|
|
position: LatLng;
|
|
sidc: string;
|
|
waypoints: Waypoint[] | null;
|
|
}
|