12 lines
108 B
Go
12 lines
108 B
Go
package exhibit
|
|
|
|
import (
|
|
"image"
|
|
)
|
|
|
|
type Cell struct {
|
|
Value rune
|
|
Point image.Point
|
|
Attrs Attributes
|
|
}
|