Add points spinner

This commit is contained in:
Christian Rocha 2020-11-11 12:19:37 -05:00 committed by Christian Rocha
parent 81feaacf5b
commit e6219572e5

View File

@ -37,6 +37,10 @@ var (
Frames: []string{"█", "▓", "▒", "░"}, Frames: []string{"█", "▓", "▒", "░"},
FPS: time.Second / 8, FPS: time.Second / 8,
} }
Points = Spinner{
Frames: []string{"∙∙∙", "●∙∙", "∙●∙", "∙∙●"},
FPS: time.Second / 7,
}
Globe = Spinner{ Globe = Spinner{
Frames: []string{"🌍 ", "🌎 ", "🌏 "}, Frames: []string{"🌍 ", "🌎 ", "🌏 "},
FPS: time.Second / 4, FPS: time.Second / 4,