]> de.git.xonotic.org Git - voretournament/voretournament.git/blob - misc/source/fteqcc-src/progtype.h
Add source for the new Vore Tournament logo. Uses clip art from http://www.openclipar...
[voretournament/voretournament.git] / misc / source / fteqcc-src / progtype.h
1 #ifndef QCLIB_PROGTYPE_H
2 #define QCLIB_PROGTYPE_H
3
4 #ifndef DLL_PROG
5
6 #else
7 typedef float vec_t;
8 typedef vec_t vec3_t[3];
9 #endif
10
11 #ifndef t_bool
12 #define t_bool
13 typedef int pbool;
14
15 #else
16 #define t_bool
17 #endif
18 typedef int progsnum_t;
19 typedef int func_t;
20 typedef int string_t;
21
22 #endif /* QCLIB_PROGTYPE_H */
23