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

12 lines
108 B
Go
Raw Normal View History

package exhibit
2017-12-28 19:21:01 -07:00
import (
"image"
)
type Cell struct {
Value rune
2017-12-28 19:21:01 -07:00
Point image.Point
Attrs Attributes
}