]> icculus.org git repositories - btb/d2x.git/blob - include/maths.h
use the orientation parameter of g3_draw_bitmap
[btb/d2x.git] / include / maths.h
1 /* Maths.h library header file */
2
3 #ifndef _MATHS_H
4 #define _MATHS_H
5
6 #include "fix.h"
7 #include "vecmat.h"
8
9
10 #define D_RAND_MAX 32767
11
12 void d_srand (unsigned int seed);
13 int d_rand (void); // Random number function which returns in the range 0-0x7FFF
14
15
16 #endif