diff options
Diffstat (limited to 'cube_pc_test1/launch_effect.h')
-rw-r--r-- | cube_pc_test1/launch_effect.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/cube_pc_test1/launch_effect.h b/cube_pc_test1/launch_effect.h new file mode 100644 index 0000000..072822a --- /dev/null +++ b/cube_pc_test1/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 + |