mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
* 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.
18 lines
278 B
TypeScript
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 );
|
|
}
|
|
|
|
} |