composition/source/logic/repairing.ts

10 lines
127 B
TypeScript
Raw Normal View History

2025-03-03 07:15:30 +01:00
class Repairing implements Occupation {
public constructor() {
}
public work(): void {
show("*fix* *fix* *fix*");
}
}