dancefloor-monorepo/go/patterns/patterns.go

8 lines
104 B
Go
Raw Normal View History

2020-05-03 23:44:38 +01:00
package patterns
type Colour [3]uint8
2020-05-04 01:29:45 +01:00
type Pattern interface {
Draw(width, height int) *[][]Colour
}