mirror of
https://git.code.sf.net/p/quake/game-source
synced 2024-11-29 15:12:00 +00:00
19 lines
333 B
C++
19 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");
|
||
|
};
|