From fcdfd0e5001dfe93ff2b5f2df58c53bff6e36a0b Mon Sep 17 00:00:00 2001 From: duynam3004 <132324061+duynam3004@users.noreply.github.com> Date: Wed, 1 May 2024 21:07:54 +0700 Subject: [PATCH] Create surprise.go --- surprise.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 surprise.go diff --git a/surprise.go b/surprise.go new file mode 100644 index 0000000..8cb5121 --- /dev/null +++ b/surprise.go @@ -0,0 +1,12 @@ +package frames + +// This is the value stored in the FrameMap +var MyAnimation = DefaultFrameType(myAnimationFrames) + +var myAnimationFrames = []string{ + ` ___ _ __ _ _ _ _ _ // _ _ __ _ + / __|| |_ _/_/ __ | |__ _ _ | |_ | |_ (_) | |_ _/\ | |_ _ _ | |_ /_/ | | + | (__ | ' \| || |/ _| | '_ \| ' \ | _|| ' \ | | | _|/ _ \| _| | ' \ | ' \ / -_)|_| + \___||_||_|\_,_|\__| |_.__/|_||_| \__||_||_||_| \__|\___/ \__| |_||_||_||_|\___|(_) + `, +}