mirror of
https://git.code.sf.net/p/quake/game-source
synced 2024-11-10 06:31:52 +00:00
88c055ea3c
<taniwha> zinx: thanks :) zinx' klik mod :)
18 lines
333 B
C++
18 lines
333 B
C++
#include "common.qh"
|
|
|
|
#include "mdl.qh"
|
|
#include "mdl_eyes.qh"
|
|
|
|
void() mdl_setup_eyes = {
|
|
setmodel(self, "progs/eyes.mdl");
|
|
setsize(self, VEC_HULL_MIN, VEC_HULL_MAX);
|
|
|
|
self.view_ofs = '0 0 22';
|
|
|
|
self.mdl_func = mdl_func_void;
|
|
self.mdl_think = NOTHING_function;
|
|
};
|
|
|
|
void() mdl_eyes_init = {
|
|
precache_model("progs/eyes.mdl");
|
|
};
|