mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
12 lines
229 B
TypeScript
12 lines
229 B
TypeScript
import { LatLng } from "leaflet";
|
|
|
|
export interface Waypoint {
|
|
name: string;
|
|
position: LatLng;
|
|
altitude_ft: number;
|
|
altitude_reference: string;
|
|
is_movable: boolean;
|
|
should_mark: boolean;
|
|
include_in_path: boolean;
|
|
}
|