(title, width = 800, height = 600)
| 11 | /** Base Application used by all examples */ |
| 12 | export class App { |
| 13 | constructor(title, width = 800, height = 600) { |
| 14 | this.title = title; |
| 15 | this.width = width; |
| 16 | this.height = height; |
| 17 | } |
| 18 | |
| 19 | // To be extended by subclasses |
| 20 | async init() {} |
nothing calls this directly
no outgoing calls
no test coverage detected