]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/menu/util/nfunction.qc
I did not want to do that. Sorry, disk space. Some admin better get rid of that mess.
[divverent/nexuiz.git] / data / qcsrc / menu / util / nfunction.qc
1 // NG Menu
2 // util/nfunction.qc
3
4 void() Util_NullFunction        = {};
5 bool() Util_TrueFunction        = { return true;        };
6 bool() Util_FalseFunction       = { return false;       };
7 string() Util_StringFuntion     = { return "";          };
8 vector() Util_VectorFunction    = { return '0 0 0';     };
9 entity() Util_EntityFunction    = { return null_entity; };