package patterns
type Colour [3]uint8
type Pattern interface {
Draw(width, height int) *[][]Colour
}