mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
12 lines
201 B
TypeScript
12 lines
201 B
TypeScript
import { LatLng } from "leaflet";
|
|
|
|
export interface ControlPoint {
|
|
id: number;
|
|
name: string;
|
|
blue: boolean;
|
|
position: LatLng;
|
|
mobile: boolean;
|
|
destination: LatLng | null;
|
|
sidc: string;
|
|
}
|