mirror of
https://git.code.sf.net/p/quake/prozac-qfcc
synced 2024-11-30 16:01:49 +00:00
89102c17c7
offending code is commented out.
31 lines
474 B
C++
31 lines
474 B
C++
#include "defs.qh"
|
|
|
|
entity () real_spawn;
|
|
void (entity ent) initentity;
|
|
|
|
entity () spawn =
|
|
{
|
|
local entity ent;
|
|
|
|
ent = real_spawn ();
|
|
initentity (ent);
|
|
|
|
return ent;
|
|
};
|
|
|
|
void (entity ent) initentity =
|
|
{
|
|
ent.classname = "";
|
|
ent.netname = "";
|
|
ent.targetname = "";
|
|
ent.target = "";
|
|
ent.team_str_home = "";
|
|
ent.flame_id = "";
|
|
ent.group = "";
|
|
ent.message = "";
|
|
|
|
// self.solid = SOLID_NOT;
|
|
// self.movetype = MOVETYPE_NONE;
|
|
// setmodel (self, "");
|
|
// ent.model = "";
|
|
};
|