mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
* IClientEntityList is the full virtual function table. * CUtlDict "implementation" is temporary.
18 lines
356 B
C
18 lines
356 B
C
//============ Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//
|
|
// A growable memory class.
|
|
//===========================================================================//
|
|
#pragma once
|
|
|
|
struct __declspec(align(8)) CUtlMemory
|
|
{
|
|
void* m_pMemory;
|
|
int64_t m_nAllocationCount;
|
|
int64_t m_nGrowSize;
|
|
};
|
|
|