Ulepszenie generatora składów (wip)

This commit is contained in:
2022-11-04 20:50:54 +01:00
parent f24d212ca8
commit 3c5a9d2d0c
8 changed files with 261 additions and 37 deletions
+3
View File
@@ -1,4 +1,5 @@
export type Vehicle = ILocomotive | ICarWagon;
export type StockSectionMode = 'STOCK_LIST' | 'STOCK_GENERATOR';
export interface IStore {
chosenCar: ICarWagon | null;
@@ -25,6 +26,8 @@ export interface IStore {
isRandomizerCardOpen: boolean;
isRealStockListCardOpen: boolean;
stockSectionMode: 'stock-list' | 'stock-generator';
}
export interface IVehicleData {