aboutsummaryrefslogtreecommitdiffstats
path: root/src/animation.h
diff options
context:
space:
mode:
authorKevin Lange <k@dakko.us>2012-03-25 19:32:39 -0500
committerKevin Lange <k@dakko.us>2012-03-25 19:32:39 -0500
commit415f8251d9cfbae703275373c9e92e6930f2b298 (patch)
tree7521732e8ad87ca18a92d07272e0be1dcbb89c6b /src/animation.h
parented21034c7bd21cf93481ad7ea64a1d1ad77e1305 (diff)
downloadnyancat-415f8251d9cfbae703275373c9e92e6930f2b298.tar.gz
Added extra display options
Diffstat (limited to 'src/animation.h')
-rw-r--r--src/animation.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/animation.h b/src/animation.h
index ebcad3a..ad1aae4 100644
--- a/src/animation.h
+++ b/src/animation.h
@@ -1,3 +1,9 @@
+/*
+ * Pop Tart Cat animation frames
+ */
+#ifndef ANIMATION_H
+#define ANIMATION_H
+
char * frame0[] = {
",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,.,,,,,,,,,,,,,,,,,,,,,,,,,",
",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,.,.,,,,,,,,,,,,,,,,,,,,,,,,",
@@ -805,3 +811,8 @@ char ** frames[] = {
frame11,
NULL
};
+
+#define FRAME_WIDTH 64
+#define FRAME_HEIGHT 64
+
+#endif