Xonotic QuakeC
The free, fast arena FPS with crisp movement and a wide array of weapons
all.qc File Reference
#include "all.qh"
Include dependency graph for all.qc:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

string M_Model (string m_mdl)

Function Documentation

◆ M_Model()

string M_Model ( string m_mdl)

Definition at line 4 of file all.qc.

5{
6 string output = strcat("models/monsters/", m_mdl);
7#ifdef SVQC
8 MUTATOR_CALLHOOK(MonsterModel, m_mdl, output);
9 return M_ARGV(1, string);
10#else
11 return output;
12#endif
13}
#define MUTATOR_CALLHOOK(id,...)
Definition base.qh:143
#define M_ARGV(x, type)
Definition events.qh:17
strcat(_("^F4Countdown stopped!"), "\n^BG", _("Teams are too unbalanced."))

References M_ARGV, MUTATOR_CALLHOOK, and strcat().