game-source/klik/mdl/mdl_void.qc
Bill Currie 88c055ea3c <zinx> taniwha: FWIW, the code is officially donated to quakeforge :)
<taniwha> zinx: thanks :)

zinx' klik mod :)
2003-10-24 21:43:32 +00:00

13 lines
269 B
C++

#include "common.qh"
#include "mdl.qh"
#include "mdl_void.qh"
void() mdl_setup_void = {
self.modelindex = 0; /* Don't use setmodel */
setsize(self, '0 0 0', '0 0 0');
self.view_ofs = '0 0 0';
self.mdl_func = mdl_func_void;
self.mdl_think = NOTHING_function;
};