aboutsummaryrefslogtreecommitdiffstats
path: root/avr-test2/src/launch_effect.h
blob: 072822aba7c21ad7390f7487de2845252d057b9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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