10 lines
127 B
TypeScript
10 lines
127 B
TypeScript
|
class Repairing implements Occupation {
|
||
|
public constructor() {
|
||
|
}
|
||
|
|
||
|
public work(): void {
|
||
|
show("*fix* *fix* *fix*");
|
||
|
}
|
||
|
}
|
||
|
|