]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/monsters/all.qc
Merge branch 'master' into Mirio/balance
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / monsters / all.qc
1 #include "all.qh"
2
3 string M_Model(string m_mdl)
4 {
5         string output = strcat("models/monsters/", m_mdl);
6 #ifdef SVQC
7         MUTATOR_CALLHOOK(MonsterModel, m_mdl, output);
8         return M_ARGV(1, string);
9 #else
10         return output;
11 #endif
12 }