This commit is contained in:
simon795 2025-01-06 14:48:13 +05:30 committed by GitHub
commit c2f518f290
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

46
frames/ring.go Normal file
View file

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