Создал дочерний класс InRunState

related #4
parent eec8379a
import { TruckState } from "../TruckState";
export class InRunState extends TruckState {
public name: string = 'В пути';
public changeDriver(): void {
console.log('Ошибка. Нельзя поменять водителя в пути!');
};
public startRun(): void {
console.log('Ошибка. Грузовик уже находится в пути!');
};
public startRepair(): void {
console.log('Грузовик успешно отправился на починку');
};
};
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment