Exemplo n.º 1
0
static void G_ReactionFireNotifyClientEndShot (const Edict* target)
{
	rft.notifyClientMove(target, MAX_ROUTE, false);
}
Exemplo n.º 2
0
void G_ReactionFireNotifyClientEndMove (const Actor* target)
{
	rft.notifyClientMove(target, target->moveinfo.steps - 1, false);
}
Exemplo n.º 3
0
static void G_ReactionFireNotifyClientStartShot (const Edict* target)
{
	rft.notifyClientMove(target, MAX_ROUTE, true);
}
Exemplo n.º 4
0
void G_ReactionFireNotifyClientStartMove (const Actor* target)
{
	/* note that this is sent _before_ the actual move event, so we can't use the step number */
	rft.notifyClientMove(target, MAX_ROUTE, true);
}