1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2024-12-23 01:59:43 +08:00

Update ChangeAccessorFieldPathIndex_t (#262)

After 8/8/2024 CS2 update
This commit is contained in:
Ivan Kardapoltsev 2024-08-09 19:40:22 +05:00 committed by GitHub
parent c57d5ab398
commit 29244abde5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -20,9 +20,9 @@ class CEntityInstance;
struct ChangeAccessorFieldPathIndex_t
{
ChangeAccessorFieldPathIndex_t() { m_Value = -1; }
ChangeAccessorFieldPathIndex_t( int16 value ) { m_Value = value; }
ChangeAccessorFieldPathIndex_t( int32 value ) { m_Value = value; }
int16 m_Value;
int32 m_Value;
};
typedef uint32 SpawnGroupHandle_t;