#ifndef MONSTERS_ALL_C #define MONSTERS_ALL_C string M_Model(string m_mdl) { string output = strcat("models/monsters/", m_mdl); #ifdef SVQC MUTATOR_CALLHOOK(MonsterModel, m_mdl, output); return M_ARGV(1, string); #else return output; #endif } #include "all.qh" #define IMPLEMENTATION #include "monster/_mod.inc" #undef IMPLEMENTATION #ifdef SVQC #include "spawn.qc" #include "sv_monsters.qc" #endif #endif