1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
package avt

import "avt-go/types"

type Occupancy = types.Occupancy
type Cell = types.Cell

const (
	OccupancySingle   = types.OccupancySingle
	OccupancyWideHead = types.OccupancyWideHead
	OccupancyWideTail = types.OccupancyWideTail
)

func DefaultCell() Cell      { return types.DefaultCell() }
func BlankCell(pen Pen) Cell { return types.BlankCell(pen) }