mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +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;
|