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

related #4
parent 619ec144
import { TruckState } from "../TruckState";
export class InBaseState 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