X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fplayer.qh;h=b9a5fa928835208119144e2d7749149c7685af4e;hb=e8c8ed528c75c463075fd8cba237a5370fa1199a;hp=08702316d40deab492adbe66cdae7d30dd15fa85;hpb=3699a2f4d18803b8909e43e1fe21dceb9cda8223;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/player.qh b/qcsrc/server/player.qh index 08702316d..b9a5fa928 100644 --- a/qcsrc/server/player.qh +++ b/qcsrc/server/player.qh @@ -35,6 +35,19 @@ void PrintToChatAll(string text); /// \return No return. void DebugPrintToChatAll(string text); +/// \brief Print the string to chat of all players of the specified team. +/// \param[in] teamnum Team to print to. See NUM_TEAM constants. +/// \param[in] text Text to print. +/// \return No return. +void PrintToChatTeam(int teamnum, string text); + +/// \brief Print the string to chat of all players of the specified team if the +/// server cvar "developer" is not 0. +/// \param[in] teamnum Team to print to. See NUM_TEAM constants. +/// \param[in] text Text to print. +/// \return No return. +void DebugPrintToChatTeam(int teamnum, string text); + void player_setupanimsformodel(entity this); void player_anim(entity this);