1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
package terminal

type Cursor struct {
	Col     int
	Row     int
	Visible bool
}

func DefaultCursor() Cursor {
	return Cursor{Col: 0, Row: 0, Visible: true}
}