mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
9 lines
223 B
R
9 lines
223 B
R
#include "qw_message.h"
|
|
#include "tempent.h"
|
|
|
|
void(vector org, float damage) SpawnBlood =
|
|
{
|
|
WriteBytes (MSG_MULTICAST, SVC_TEMPENTITY, TE_BLOOD, 1.0);
|
|
WriteCoordV (MSG_MULTICAST, org);
|
|
multicast (org, MULTICAST_PVS);
|
|
};
|