package yay type Claps struct { Sequence } func NewClaps() *Dance { d := &Dance{ 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/`), []rune(`\o/`), }, }, } return d }