yay/apple.go

21 lines
268 B
Go
Raw Permalink Normal View History

2018-09-09 19:09:56 -07:00
package yay
type Apple struct {
Sequence
}
func NewApple() *Apple {
return &Apple{
Sequence{
Frames: [][]rune{
[]rune(``),
[]rune(``),
[]rune(``),
[]rune(``),
[]rune(``),
[]rune(``),
},
},
}
}