mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
12 lines
209 B
TypeScript
12 lines
209 B
TypeScript
import { LatLng } from "leaflet";
|
|
|
|
export interface SupplyRoute {
|
|
points: LatLng[];
|
|
front_active: boolean;
|
|
is_sea: boolean;
|
|
blue: boolean;
|
|
active_transports: string[];
|
|
}
|
|
|
|
export default SupplyRoute;
|