mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-08 05:51:09 +00:00
760f70d3f1
so that all files are included by a central one instead of compiling each one separately. This speeds up the compilation process by 25% when doing a complete rebuild in Visual C. - Cleaned up more header dependencies. SVN r1226 (trunk)
25 lines
492 B
C++
25 lines
492 B
C++
/*
|
|
#include "actor.h"
|
|
#include "s_sound.h"
|
|
#include "p_local.h"
|
|
#include "p_enemy.h"
|
|
#include "a_action.h"
|
|
#include "thingdef/thingdef.h"
|
|
*/
|
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_BspiAttack)
|
|
{
|
|
if (!self->target)
|
|
return;
|
|
|
|
A_FaceTarget (self);
|
|
|
|
// launch a missile
|
|
P_SpawnMissile (self, self->target, PClass::FindClass("ArachnotronPlasma"));
|
|
}
|
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_BabyMetal)
|
|
{
|
|
S_Sound (self, CHAN_BODY, "baby/walk", 1, ATTN_IDLE);
|
|
A_Chase (self);
|
|
}
|