Create ring.go

This commit is contained in:
simon795 2024-02-29 15:31:05 +01:00 committed by GitHub
parent 0e53a4799f
commit 14c416ae41
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{
`------------@@@@@@@@@@@@------------
---------@@@ @@@---------
------@@@ @@@@------
------@@@ @@@@------
------@@@ @@@@------
------@@@ @@@@------
------@@@ @@@@------
------@@@ @@@@------
------@@@ @@@@------
------@@@ @@@@------
------@@@ @@@@------
---------@@@ @@@---------
------------@@@@@@@@@@@@------------`,
`-----------------@@@@---------------
-----------------@@@@---------------
-----------------@@@@---------------
-----------------@@@@---------------
-----------------@@@@---------------
-----------------@@@@---------------
-----------------@@@@---------------
-----------------@@@@---------------
-----------------@@@@---------------
-----------------@@@@---------------
-----------------@@@@---------------
-----------------@@@@---------------
-----------------@@@@---------------`,
`------------@@@@@@@@@@@@------------
---------@@@ @@@---------
------@@@ @@@@------
------@@@ @@@@------
------@@@ @@@@------
------@@@ @@@@------
------@@@ @@@@------
------@@@ @@@@------
------@@@ @@@@------
------@@@ @@@@------
------@@@ @@@@------
---------@@@ @@@---------
------------@@@@@@@@@@@@------------`,
}