b1373b2201d21adb873bc0a67ef3274c2b4cf026
[jump.git] / dol / examples / example5 / src / global.h
1 #ifndef GLOBAL_H
2 #define GLOBAL_H
3
4 #define NUMBER_OF_FFT_POINTS 16
5
6 //structure for holding complex numbers
7 typedef struct complex_number
8 {
9   float real;
10   float imag;
11 } ComplexNumber;
12
13 #endif