You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
374 B
Go
30 lines
374 B
Go
7 years ago
|
package yay
|
||
|
|
||
|
type Claps struct {
|
||
|
Sequence
|
||
|
}
|
||
|
|
||
|
func NewClaps() *Dance {
|
||
|
d := &Dance{
|
||
|
Sequence{
|
||
|
Frames: [][]rune{
|
||
|
[]rune(`\\o`),
|
||
|
[]rune(`\o/`),
|
||
|
[]rune(`\o/`),
|
||
|
[]rune(`\o/`),
|
||
|
|
||
|
[]rune(`\\o`),
|
||
|
[]rune(`\o/`),
|
||
|
[]rune(`\\o`),
|
||
|
[]rune(`\o/`),
|
||
|
|
||
|
[]rune(`\o/`),
|
||
|
[]rune(`\o/`),
|
||
|
[]rune(`\o/`),
|
||
|
[]rune(`\o/`),
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
return d
|
||
|
}
|