blob: 1c1ca7bad976800074f917fc1b144fb052c0cda8 (
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 contructor(instruction: string, timer: number) {
this.instruction = instruction;
this.timer = timer;
}
public getInstruction(): string {
return this.instruction;
}
public getTimer(): number {
return this.timer;
}
}
|