Files
DCSOlympus/client/src/atc/FlightList.ts
PeekabooSteam 1c1e60146d Pax1601 main (#52)
* GA initial data

* First commit of crude functionality.

* More AIC work so I don't lose it. (Best commit message ever.)

* Restructured to use 'phrases'.

* Set to a working state.

* Committing so I don't lose work.

* Added ai-formation feature swtich and UI kit stuff.

* Added plane units to UI kit.
2023-02-25 18:03:03 +01:00

18 lines
278 B
TypeScript

import { ATCMockAPI_Flights } from "./ATCMockAPI/Flights";
export class ATCFLightList {
constructor() {
}
getFlights( generateMockDataIfEmpty?:boolean ) {
let api = new ATCMockAPI_Flights();
return api.get( generateMockDataIfEmpty );
}
}