refactor out a pattern for adding other commands
added dance, shrug.
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
package main
|
||||
|
||||
import "mcquay.me/yay"
|
||||
|
||||
type Shrug struct {
|
||||
yay.Sequence
|
||||
}
|
||||
|
||||
func NewShrug() *Shrug {
|
||||
return &Shrug{
|
||||
yay.Sequence{
|
||||
Frames: [][]rune{
|
||||
[]rune(`¯\_(ツ )_/¯`),
|
||||
[]rune(`¯\_(ツ )_/¯`),
|
||||
[]rune(`¯\_(ツ )_/¯`),
|
||||
[]rune(`¯\-(ツ )-/¯`),
|
||||
[]rune(`¯\_(ツ )_/¯`),
|
||||
[]rune(`¯\-(ツ )-/¯`),
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
func main() {
|
||||
t := yay.NewViewPort(NewShrug())
|
||||
t.Run()
|
||||
}
|
||||
Reference in New Issue
Block a user