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)
52 lines
1.2 KiB
C++
52 lines
1.2 KiB
C++
#include "actor.h"
|
|
#include "info.h"
|
|
#include "p_local.h"
|
|
#include "a_sharedglobal.h"
|
|
#include "m_random.h"
|
|
#include "gi.h"
|
|
#include "doomstat.h"
|
|
#include "gstrings.h"
|
|
#include "thingdef/thingdef.h"
|
|
#include "g_level.h"
|
|
#include "p_enemy.h"
|
|
#include "a_doomglobal.h"
|
|
#include "a_specialspot.h"
|
|
#include "templates.h"
|
|
#include "m_bbox.h"
|
|
|
|
// Include all the other Doom stuff here to reduce compile time
|
|
#include "a_arachnotron.cpp"
|
|
#include "a_archvile.cpp"
|
|
#include "a_bossbrain.cpp"
|
|
#include "a_bruiser.cpp"
|
|
#include "a_cacodemon.cpp"
|
|
#include "a_cyberdemon.cpp"
|
|
#include "a_demon.cpp"
|
|
#include "a_doomimp.cpp"
|
|
#include "a_doomweaps.cpp"
|
|
#include "a_fatso.cpp"
|
|
#include "a_keen.cpp"
|
|
#include "a_lostsoul.cpp"
|
|
#include "a_painelemental.cpp"
|
|
#include "a_possessed.cpp"
|
|
#include "a_revenant.cpp"
|
|
#include "a_spidermaster.cpp"
|
|
#include "a_scriptedmarine.cpp"
|
|
|
|
// The barrel of green goop ------------------------------------------------
|
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_BarrelDestroy)
|
|
{
|
|
if ((dmflags2 & DF2_BARRELS_RESPAWN) &&
|
|
(deathmatch || alwaysapplydmflags))
|
|
{
|
|
self->height = self->GetDefault()->height;
|
|
self->renderflags |= RF_INVISIBLE;
|
|
self->flags &= ~MF_SOLID;
|
|
}
|
|
else
|
|
{
|
|
self->Destroy ();
|
|
}
|
|
}
|
|
|