(key: string, y1: number, y2: number)
| 39 | } |
| 40 | |
| 41 | export function getPartOfAscii(key: string, y1: number, y2: number): string[]{ |
| 42 | return getAscii(key).slice(y1, y2); |
| 43 | } |
| 44 | |
| 45 | export function getText(key: string): string{ |
| 46 | if(textMap["en." + key] == null) |