(x1: number, x2: number, y: number, otherClass: string = "")
| 16 | |
| 17 | // Public methods |
| 18 | public addAsciiButton(x1: number, x2: number, y: number, otherClass: string = ""): boolean{ |
| 19 | return this.addTwoTags(x1, x2, y, "<span class=\"asciiButton " + otherClass + "\">", "</span>"); |
| 20 | } |
| 21 | |
| 22 | public addAsciiNinjaButton(x1: number, x2: number, y: number, otherClass: string = ""): boolean{ |
| 23 | return this.addTwoTags(x1, x2, y, "<span class=\"asciiNinjaButton " + otherClass + "\">", "</span>"); |
no test coverage detected