mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-04 00:23:25 +08:00
27 lines
710 B
C++
27 lines
710 B
C++
#ifndef CONCRETEENTITYLIST_H
|
|
#define CONCRETEENTITYLIST_H
|
|
|
|
#include "entityidentity.h"
|
|
|
|
class CConcreteEntityList
|
|
{
|
|
struct CList
|
|
{
|
|
CEntityIdentity* m_pHead;
|
|
CEntityIdentity* m_pTail;
|
|
int m_nCount;
|
|
};
|
|
public:
|
|
CEntityIdentity* m_pIdentityChunks[MAX_ENTITY_LISTS];
|
|
CEntityIdentity* m_pFirstActiveEntity; // 512
|
|
CConcreteEntityList::CList m_usedList; // 520
|
|
CConcreteEntityList::CList m_dormantList; // 544
|
|
CConcreteEntityList::CList m_freeNetworkableList; // 568
|
|
CConcreteEntityList::CList m_freeNonNetworkableList; // 592
|
|
uint32 m_nNetworkableEntityLimit; // 0x268
|
|
uint32 m_nNonNetworkableEntityLimit; // 0x26c
|
|
uint32 m_nMaxPlayers;
|
|
CBitVec<16384> m_PVSBits;
|
|
};
|
|
|
|
#endif // CONCRETEENTITYLIST_H
|