]> icculus.org git repositories - divverent/nexuiz.git/blob - data/source/util/util.qh
restructure
[divverent/nexuiz.git] / data / source / util / util.qh
1 // NG-Menu
2 // util/util.qh
3
4 // empty functions for every return type
5 void() Util_NullFunction;
6 bool() Util_TrueFunction;
7 bool() Util_FalseFunction;
8 string() Util_StringFuntion;
9 vector() Util_VectorFunction;
10 entity() Util_EntityFunction;
11
12 // function typedefs
13
14 typedef void() voidFunction;
15 typedef float() floatFunction;
16 typedef string() stringFunction;
17 typedef vector() vectorFunction;
18
19
20
21
22