sm
/
yay
1
0
Fork 0
yay/highfive.go

30 linhas
411 B
Go

2019-04-14 09:51:43 -07:00
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
}