mirror of https://github.com/r4sas/ExtraMirror
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
772 B
36 lines
772 B
//========= Copyright © 1996-2002, Valve LLC, All rights reserved. ============ |
|
// |
|
// Purpose: |
|
// |
|
// $NoKeywords: $ |
|
//============================================================================= |
|
|
|
#if !defined EDICT_H |
|
#define EDICT_H |
|
#ifdef _WIN32 |
|
#pragma once |
|
#endif |
|
#define MAX_ENT_LEAFS 48 |
|
|
|
#include "progdefs.h" |
|
|
|
struct edict_s |
|
{ |
|
qboolean free; |
|
int serialnumber; |
|
link_t area; // linked to a division node or leaf |
|
|
|
int headnode; // -1 to use normal leaf check |
|
int num_leafs; |
|
short leafnums[MAX_ENT_LEAFS]; |
|
|
|
float freetime; // sv.time when the object was freed |
|
|
|
void* pvPrivateData; // Alloced and freed by engine, used by DLLs |
|
|
|
entvars_t v; // C exported fields from progs |
|
|
|
// other fields from progs come immediately after |
|
}; |
|
|
|
#endif
|
|
|