yay/yay.go

27 lines
345 B
Go
Raw Normal View History

2015-06-29 23:24:02 -07:00
package yay
type Yay struct {
Sequence
}
func NewYay() *Yay {
y := &Yay{
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-`),
},
},
}
return y
}