(x: number, y: number, text: string, softWrap?: boolean[])
| 280 | } |
| 281 | |
| 282 | write(x: number, y: number, text: string, softWrap?: boolean[]): void { |
| 283 | if (!text) { |
| 284 | return |
| 285 | } |
| 286 | |
| 287 | this.operations.push({ |
| 288 | type: 'write', |
| 289 | x, |
| 290 | y, |
| 291 | text, |
| 292 | softWrap, |
| 293 | }) |
| 294 | } |
| 295 | |
| 296 | writeLines(x: number, y: number, lines: string[]): void { |
| 297 | if (lines.length === 0) { |
no outgoing calls