11 lines
192 B
Go
11 lines
192 B
Go
package input
|
|
|
|
// CursorPositionEvent represents a cursor position event.
|
|
type CursorPositionEvent struct {
|
|
// Row is the row number.
|
|
Row int
|
|
|
|
// Column is the column number.
|
|
Column int
|
|
}
|