Ejemplo n.º 1
0
void
flyer_fireright(edict_t *self)
{
	if (!self)
	{
		return;
	}

	flyer_fire(self, MZ2_FLYER_BLASTER_2);
}
Ejemplo n.º 2
0
void
flyer_fireleft(edict_t *self)
{
	if (!self)
	{
		return;
	}

	flyer_fire(self, MZ2_FLYER_BLASTER_1);
}
Ejemplo n.º 3
0
void flyer_fireright (edict_t *self)
{
	flyer_fire (self, MZ2_FLYER_BLASTER_2);
}
Ejemplo n.º 4
0
void flyer_fireleft (edict_t *self)
{
	flyer_fire (self, MZ2_FLYER_BLASTER_1);
}