mirror of
https://github.com/Spythere/pojazdownik.git
synced 2026-05-03 19:48:11 +00:00
added double manning checkbox & support
This commit is contained in:
+6
-3
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user