Update 1.0.4

This commit is contained in:
2021-11-14 17:42:13 +01:00
parent c94d946b2b
commit 60d8da9598
9 changed files with 405 additions and 241 deletions
+6
View File
@@ -11,6 +11,11 @@ export interface IStore {
stockList: IStock[];
cargoOptions: any[][];
// locoOptions: ILocomotive[];
// carOptions: ICarWagon[];
vehiclePreviewSrc: string;
}
export interface IVehicleData {
@@ -58,6 +63,7 @@ export interface IStock {
maxSpeed: number;
cargo?: { id: string; totalMass: number };
isLoco: boolean;
supportersOnly: boolean;
count: number;
imgSrc: string;
}