mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-08 05:51:26 +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)
27 lines
720 B
C++
27 lines
720 B
C++
/*
|
|
#include "actor.h"
|
|
#include "p_enemy.h"
|
|
#include "a_action.h"
|
|
#include "m_random.h"
|
|
#include "thingdef/thingdef.h"
|
|
*/
|
|
|
|
static FRandom pr_centaurdefend ("CentaurDefend");
|
|
|
|
//============================================================================
|
|
//
|
|
// A_CentaurDefend
|
|
//
|
|
//============================================================================
|
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_CentaurDefend)
|
|
{
|
|
A_FaceTarget (self);
|
|
if (self->CheckMeleeRange() && pr_centaurdefend() < 32)
|
|
{
|
|
// This should unset REFLECTIVE as well
|
|
// (unless you want the Centaur to reflect projectiles forever!)
|
|
self->flags2&=~(MF2_REFLECTIVE|MF2_INVULNERABLE);
|
|
self->SetState (self->MeleeState);
|
|
}
|
|
}
|