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