feat: Implemented import/export page

This commit is contained in:
Davide Passoni
2025-01-07 15:36:36 +01:00
parent c9c34f013f
commit 0376d020e7
14 changed files with 454 additions and 66 deletions

View File

@@ -289,6 +289,7 @@ export enum OlympusState {
AUDIO = "Audio",
AIRBASE = "Airbase",
GAME_MASTER = "Game master",
IMPORT_EXPORT = "Import/export"
}
export const NO_SUBSTATE = "No substate";
@@ -334,6 +335,13 @@ export enum OptionsSubstate {
KEYBIND = "Keybind",
}
export enum ImportExportSubstate {
NO_SUBSTATE = "No substate",
IMPORT = "IMPORT",
EXPORT = "EXPORT"
}
export type OlympusSubState = DrawSubState | JTACSubState | SpawnSubState | OptionsSubstate | string;
export const IADSTypes = ["AAA", "SAM Site", "Radar (EWR)"];