Silly little cli celebration tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package yay
|
|
|
|
type Sequence struct {
|
|
Frame int
|
|
Frames [][]rune
|
|
}
|
|
|
|
func (s *Sequence) Next() []rune {
|
|
s.Frame += 1
|
|
return s.Frames[s.Frame%len(s.Frames)]
|
|
}
|
|
|