mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
22 lines
435 B
TypeScript
22 lines
435 B
TypeScript
import {
|
|
ControlPoint,
|
|
Flight,
|
|
FrontLine,
|
|
NavMeshes,
|
|
SupplyRoute,
|
|
Tgo,
|
|
ThreatZoneContainer,
|
|
} from "./liberationApi";
|
|
import { LatLngLiteral } from "leaflet";
|
|
|
|
export default interface Game {
|
|
control_points: ControlPoint[];
|
|
tgos: Tgo[];
|
|
supply_routes: SupplyRoute[];
|
|
front_lines: FrontLine[];
|
|
flights: Flight[];
|
|
threat_zones: ThreatZoneContainer;
|
|
navmeshes: NavMeshes;
|
|
map_center: LatLngLiteral | null;
|
|
}
|