From 67bbd33117522c6a5b2a03af1693a3fbfd833c49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccolas=20Garc=C3=ADa=20Ni=C3=B1o?= Date: Mon, 23 Sep 2024 12:23:34 -0500 Subject: [PATCH] Create astrend.go --- frames/astrend.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 frames/astrend.go diff --git a/frames/astrend.go b/frames/astrend.go new file mode 100644 index 0000000..63a585d --- /dev/null +++ b/frames/astrend.go @@ -0,0 +1,10 @@ +package frames + +// This is the value stored in the FrameMap +var MyAnimation = DefaultFrameType(myAnimationFrames) + +var myAnimationFrames = []string{ + `Frame1`, + `Frame2`, + `Frame3`, +}