Create surprise.go

This commit is contained in:
duynam3004 2024-05-01 21:07:54 +07:00 committed by GitHub
parent 0e53a4799f
commit fcdfd0e500
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

12
surprise.go Normal file
View file

@ -0,0 +1,12 @@
package frames
// This is the value stored in the FrameMap
var MyAnimation = DefaultFrameType(myAnimationFrames)
var myAnimationFrames = []string{
` ___ _ __ _ _ _ _ _ // _ _ __ _
/ __|| |_ _/_/ __ | |__ _ _ | |_ | |_ (_) | |_ _/\ | |_ _ _ | |_ /_/ | |
| (__ | ' \| || |/ _| | '_ \| ' \ | _|| ' \ | | | _|/ _ \| _| | ' \ | ' \ / -_)|_|
\___||_||_|\_,_|\__| |_.__/|_||_| \__||_||_||_| \__|\___/ \__| |_||_||_||_|\___|(_)
`,
}