Create kitty.go

kitty ascii art  to contribute to ascii-live

Closes #38.
This commit is contained in:
Claudia Martínez-Araneda 2023-11-24 22:13:12 -03:00 committed by Hugo Müller-Downing
parent 194ec3eb06
commit 91c27fb5eb
2 changed files with 50 additions and 1 deletions

View file

@ -60,4 +60,5 @@ var FrameMap = map[string]FrameType{
"bomb": Bomb, "bomb": Bomb,
"maxwell": Maxwell, "maxwell": Maxwell,
"earth": Earth, "earth": Earth,
"kitty": Kitty,
} }

48
frames/kitty.go Normal file
View file

@ -0,0 +1,48 @@
package frames
var Kitty = DefaultFrameType(kittyFrames)
var kittyFrames = []string{
`
`,
`
`,
}