Size returns the terminal's size.
()
| 285 | |
| 286 | // Size returns the terminal's size. |
| 287 | func (g *Gui) Size() (x, y int) { |
| 288 | return g.maxX, g.maxY |
| 289 | } |
| 290 | |
| 291 | // SetRune writes a rune at the given point, relative to the top-left |
| 292 | // corner of the terminal. It checks if the position is valid and applies |
no outgoing calls
no test coverage detected