13 lines
124 B
Go
13 lines
124 B
Go
|
package exhibit
|
||
|
|
||
|
type Position struct {
|
||
|
X int
|
||
|
Y int
|
||
|
}
|
||
|
|
||
|
type Cell struct {
|
||
|
Pos Position
|
||
|
Value rune
|
||
|
Attrs Attributes
|
||
|
}
|