From 19b080178e3bcaa7f74db6e0d786dd29b90658b9 Mon Sep 17 00:00:00 2001 From: shelru Date: Mon, 12 Sep 2016 10:39:55 +0300 Subject: [PATCH] Delete edict.h --- MiniBase/edict.h | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 MiniBase/edict.h diff --git a/MiniBase/edict.h b/MiniBase/edict.h deleted file mode 100644 index 9a38993..0000000 --- a/MiniBase/edict.h +++ /dev/null @@ -1,36 +0,0 @@ -//========= 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