aboutsummaryrefslogtreecommitdiffstats
path: root/instructables/cube8/launch_effect.h
diff options
context:
space:
mode:
Diffstat (limited to 'instructables/cube8/launch_effect.h')
-rw-r--r--instructables/cube8/launch_effect.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/instructables/cube8/launch_effect.h b/instructables/cube8/launch_effect.h
new file mode 100644
index 0000000..072822a
--- /dev/null
+++ b/instructables/cube8/launch_effect.h
@@ -0,0 +1,15 @@
+#ifndef LAUNCH_H
+#define LAUNCH_H
+
+#include "cube.h"
+
+// Total number of effects
+// Used in the main loop to loop through all the effects one by bone.
+// Set this number one higher than the highest number inside switch()
+// in launch_effect() in launch_effect.c
+#define EFFECTS_TOTAL 27
+
+void launch_effect (int effect);
+
+#endif
+