added double manning checkbox & support

This commit is contained in:
2023-10-28 15:33:09 +02:00
parent bea3c59405
commit c25a55a7d9
10 changed files with 70 additions and 38 deletions
+6 -3
View File
@@ -8,6 +8,7 @@ export interface IStore {
chosenVehicle: Vehicle | null;
isColdStart: boolean;
isDoubleManned: boolean;
showSupporter: boolean;
imageLoading: boolean;
@@ -41,7 +42,9 @@ export interface IStockProps {
type: string;
length: number;
mass: number;
cargo: string;
cargo?: string | null;
coldStart?: boolean;
doubleManned?: boolean;
}
export interface IStockData {
@@ -64,8 +67,6 @@ export interface IStockData {
};
props: IStockProps[];
usage: { [key: string]: string };
}
export interface ILocomotive {
@@ -81,6 +82,8 @@ export interface ILocomotive {
mass: number;
length: number;
coldStart: boolean;
doubleManned: boolean;
}
export interface ICarWagon {