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