mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-12-06 18:18:23 +00:00
Update CEntityIdentity
This commit is contained in:
parent
3c33d8ab94
commit
c3b88e9ba0
@ -68,7 +68,6 @@ enum EntityFlags_t : uint32
|
|||||||
EF_SUSPEND_OUTSIDE_PVS = 0x8000,
|
EF_SUSPEND_OUTSIDE_PVS = 0x8000,
|
||||||
};
|
};
|
||||||
|
|
||||||
// Size: 0x78
|
|
||||||
class CEntityIdentity
|
class CEntityIdentity
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
@ -99,30 +98,29 @@ public:
|
|||||||
bool ClassMatches( const char* pszClassOrWildcard ) const;
|
bool ClassMatches( const char* pszClassOrWildcard ) const;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
CEntityInstance* m_pInstance; // 0x0
|
CEntityInstance* m_pInstance;
|
||||||
CEntityClass* m_pClass; // 0x8
|
CEntityClass* m_pClass;
|
||||||
CEntityHandle m_EHandle; // 0x10
|
CEntityHandle m_EHandle;
|
||||||
int32 m_nameStringableIndex; // 0x14
|
int32 m_nameStringableIndex;
|
||||||
CUtlSymbolLarge m_name; // 0x18
|
CUtlSymbolLarge m_name;
|
||||||
CUtlSymbolLarge m_designerName; // 0x20
|
CUtlSymbolLarge m_designerName;
|
||||||
private:
|
private:
|
||||||
uint64 m_hPublicScope; // 0x28 - CEntityPublicScriptScope
|
uint64 m_hPublicScope; // CEntityPublicScriptScope
|
||||||
public:
|
public:
|
||||||
EntityFlags_t m_flags; // 0x30
|
EntityFlags_t m_flags;
|
||||||
private:
|
private:
|
||||||
SpawnGroupHandle_t m_hSpawnGroup; // 0x34
|
SpawnGroupHandle_t m_hSpawnGroup;
|
||||||
public:
|
public:
|
||||||
WorldGroupId_t m_worldGroupId; // 0x38
|
WorldGroupId_t m_worldGroupId;
|
||||||
uint32 m_fDataObjectTypes; // 0x3c
|
uint32 m_fDataObjectTypes;
|
||||||
ChangeAccessorFieldPathIndex_t m_PathIndex; // 0x40
|
ChangeAccessorFieldPathIndex_t m_PathIndex;
|
||||||
private:
|
private:
|
||||||
void* m_pAttributes; // 0x48 - CUtlObjectAttributeTable<CEntityIdentity, CUtlStringToken>
|
void* m_pAttributes; // CUtlObjectAttributeTable<CEntityIdentity, CUtlStringToken>
|
||||||
void* m_pRenderAttrs; // 0x50 - CRenderAttributesDoubleBuffered
|
|
||||||
public:
|
public:
|
||||||
CEntityIdentity* m_pPrev; // 0x58
|
CEntityIdentity* m_pPrev;
|
||||||
CEntityIdentity* m_pNext; // 0x60
|
CEntityIdentity* m_pNext;
|
||||||
CEntityIdentity* m_pPrevByClass; // 0x68
|
CEntityIdentity* m_pPrevByClass;
|
||||||
CEntityIdentity* m_pNextByClass; // 0x70
|
CEntityIdentity* m_pNextByClass;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // ENTITYIDENTITY_H
|
#endif // ENTITYIDENTITY_H
|
||||||
Loading…
Reference in New Issue
Block a user