added HPG VEhicles Mission, Audio settings; mission Context menu

This commit is contained in:
PxlLoewe
2025-05-24 12:46:11 -07:00
parent b2890b3ecc
commit 1ca6007ac5
28 changed files with 680 additions and 369 deletions

View File

@@ -0,0 +1,11 @@
import { HpgState } from "@repo/db";
export const hpgStateToFMSStatus = (state: HpgState): string => {
if (state === "DISPATCHED") {
return "3";
}
if (state === "ON_SCENE") {
return "4";
}
return "2";
};