Merge pull request #54 from Niccocracken/master

Adult swim logo "[as]" animation
This commit is contained in:
Hugo 2025-01-05 15:51:32 +11:00 committed by GitHub
commit c5200891c2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 294 additions and 0 deletions

293
frames/astrend.go Normal file
View file

@ -0,0 +1,293 @@
package frames
// This is the value stored in the FrameMap
var AStrend = DefaultFrameType(as)
var as = []string{
`
`,
`
`,
`
`,
`
`,
`
`,
`
`,
`
`,
`
`,
`
`,
`
`,
`
`,
`
`,
`
`,
`
`,
`
`,
`
`,
}

View file

@ -56,4 +56,5 @@ var FrameMap = map[string]FrameType{
"rick": Rick,
"spidyswing": Spidy,
"torus-knot": TorusKnot,
"as": AStrend,
}