blob: 67e14c16bac53a037f3da20ad9b51043477c8d20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
export class Step {
private instruction: string;
private timer: number;
public constructor(instruction: string, timer: number) {
this.instruction = instruction;
this.timer = timer;
}
public getInstruction(): string {
return this.instruction;
}
public getTimer(): number {
return this.timer;
}
}
|