mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-08 05:51:09 +00:00
5e8323b426
CommanderKeen to DECORATE. SVN r374 (trunk)
23 lines
455 B
C++
23 lines
455 B
C++
#include "actor.h"
|
|
#include "s_sound.h"
|
|
#include "p_local.h"
|
|
#include "p_enemy.h"
|
|
#include "a_doomglobal.h"
|
|
#include "a_action.h"
|
|
|
|
void A_BspiAttack (AActor *self)
|
|
{
|
|
if (!self->target)
|
|
return;
|
|
|
|
A_FaceTarget (self);
|
|
|
|
// launch a missile
|
|
P_SpawnMissile (self, self->target, PClass::FindClass("ArachnotronPlasma"));
|
|
}
|
|
|
|
void A_BabyMetal (AActor *self)
|
|
{
|
|
S_Sound (self, CHAN_BODY, "baby/walk", 1, ATTN_IDLE);
|
|
A_Chase (self);
|
|
}
|