yay/highfive.go

30 lines
411 B
Go

package yay
type HighFive struct {
Sequence
}
func NewHighFive() *Dance {
d := &Dance{
Sequence{
Frames: [][]rune{
[]rune(`high`),
[]rune(`five`),
[]rune(`high`),
[]rune(`five`),
[]rune(`o o`),
[]rune(`o o`),
[]rune(`d b`),
[]rune(`d b`),
[]rune(`o/\o`),
[]rune(`d b`),
[]rune(`d b`),
[]rune(`o o`),
[]rune(`o o`),
},
},
}
return d
}