Start Gauge

This commit is contained in:
2025-02-01 23:13:28 +01:00
parent 80b95d28f0
commit 80e657e55e
36 changed files with 3432 additions and 1746 deletions
+18
View File
@@ -0,0 +1,18 @@
/// <reference types="@microsoft/msfs-types/Pages/VCockpit/Core/VCockpit" />
import { FSComponent } from "@microsoft/msfs-sdk";
import { Test } from "./components/test/test";
class KH_FE_FPLAN extends BaseInstrument {
get templateID(): string {
return "KH_FE_FPLAN";
}
public connectedCallback(): void {
super.connectedCallback();
FSComponent.render(<Test />, document.getElementById("InstrumentContent"));
}
}
registerInstrument("KH_FE_FPLAN", KH_FE_FPLAN);