(msg: string)
| 103 | let messageTimer = 0; |
| 104 | |
| 105 | function showMsg(msg: string): void { |
| 106 | message = msg; |
| 107 | messageTimer = 3; |
| 108 | } |
| 109 | |
| 110 | function tileAt(x: number, y: number): number { |
| 111 | if (x < 0 || x >= MAP_W || y < 0 || y >= MAP_H) return T_WATER; |
no outgoing calls
no test coverage detected