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
|
|
}
|