mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 13:28:11 +00:00
Zmiany w wyglądzie list graczy online i spawnów
This commit is contained in:
@@ -4,33 +4,45 @@ import ScheduledTrain from './ScheduledTrain';
|
||||
export default interface Station {
|
||||
stationName: string;
|
||||
stationHash: string;
|
||||
|
||||
maxUsers: number;
|
||||
currentUsers: number;
|
||||
spawnString: string;
|
||||
|
||||
spawns: { spawnName: string; spawnLength: number }[];
|
||||
|
||||
dispatcherRate: number;
|
||||
dispatcherName: string;
|
||||
dispatcherExp: number;
|
||||
dispatcherId: number;
|
||||
dispatcherIsSupporter: boolean;
|
||||
|
||||
stationLines: string;
|
||||
stationProject: string;
|
||||
|
||||
reqLevel: string;
|
||||
supportersOnly: string;
|
||||
|
||||
signalType: string;
|
||||
controlType: string;
|
||||
default: boolean;
|
||||
nonPublic: boolean;
|
||||
|
||||
routes: {
|
||||
oneWay: { catenary: number; noCatenary: number };
|
||||
twoWay: { catenary: number; noCatenary: number };
|
||||
};
|
||||
checkpoints: {
|
||||
checkpointName: string;
|
||||
scheduledTrains: ScheduledTrain[],
|
||||
}[] | null;
|
||||
|
||||
checkpoints:
|
||||
| {
|
||||
checkpointName: string;
|
||||
scheduledTrains: ScheduledTrain[];
|
||||
}[]
|
||||
| null;
|
||||
|
||||
online: boolean;
|
||||
occupiedTo: string;
|
||||
statusTimestamp: number;
|
||||
|
||||
stationTrains: Train[];
|
||||
scheduledTrains: ScheduledTrain[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user