This repository has been archived on 2022-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
spectator/exhibit/cell.go

13 lines
124 B
Go

package exhibit
type Position struct {
X int
Y int
}
type Cell struct {
Pos Position
Value rune
Attrs Attributes
}