]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/monsters/all.qc
Merge branch 'master' into Mario/bulldozer
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / monsters / all.qc
1 #ifndef MONSTERS_ALL_C
2 #define MONSTERS_ALL_C
3
4 string M_Model(string m_mdl)
5 {
6         string output = strcat("models/monsters/", m_mdl);
7 #ifdef SVQC
8         MUTATOR_CALLHOOK(MonsterModel, m_mdl, output);
9         return monster_model_output;
10 #else
11         return output;
12 #endif
13 }
14
15 #include "all.qh"
16
17 #define IMPLEMENTATION
18 #include "all.inc"
19 #undef IMPLEMENTATION
20
21 #endif