Git Repos / fte_dogmode / qc / info / notnull.qc
Last update to this file was on 2024-03-24 at 02:40.
Show notnull.qc
//==============================================================================
// info_notnull
//==============================================================================
//======================================================================
// forward declarations
//======================================================================
// info_notnull
entity(entity src, vector org) spawn_info_notnull;
void(entity e) info_notnull_init;
void() info_notnull;
//------------------------------------------------------------------------------
/*QUAKED info_notnull (0 0.5 0) (-4 -4 -4) (4 4 4) X X X X X X X X NOT_ON_EASY NOT_ON_NORMAL NOT_ON_HARD_OR_NIGHTMARE NOT_IN_DEATHMATCH NOT_IN_COOP NOT_IN_SINGLEPLAYER X NOT_ON_HARD_ONLY NOT_ON_NIGHTMARE_ONLY
Never used in the or
*/
//----------------------------------------------------------------------
// class info_notnull: base_mapentity
// {
//--------------------------------------------------------------
entity(entity src, vector org) spawn_info_notnull =
{
local entity e = spawn ();
e.owner = src;
e.origin = org;
info_notnull_init (e);
return e;
};
//--------------------------------------------------------------
void(entity e) info_notnull_init =
{
base_mapentity_init (e);
e.classname = "info_notnull";
e.classtype = CT_INFO_NOTNULL;
};
//--------------------------------------------------------------
void() info_notnull =
{
// new spawnflags for all entities -- iw
if (SUB_Inhibit())
return;
info_notnull_init (self);
};
// };
Return to the top of this page or return to the overview of this repo.
Log notnull.qc
Date | Commit Message | Author | + | - |
---|---|---|---|---|
2024-03-24 | 2nd pass refactor, rework QC class structure | cev | +39 | -4 |
2024-01-09 | Continue OO / Class-based refactor | cev | +1 | -6 |
2023-12-09 | Start OO / class-based refactor, work on items | cev | +21 |
Return to the top of this page or return to the overview of this repo.