mirror of
https://github.com/gizak/termui.git
synced 2025-04-26 13:48:54 +08:00
10 lines
111 B
Go
10 lines
111 B
Go
package termui
|
|
|
|
import tm "github.com/nsf/termbox-go"
|
|
|
|
type Point struct {
|
|
Code tm.Cell
|
|
X int
|
|
Y int
|
|
}
|