r5sdk/r5dev/tier1/utlmemory.h
PixieCore 096ecdd333 IClientEntityList and CUtlDict.
* IClientEntityList is the full virtual function table.
* CUtlDict "implementation" is temporary.
2022-05-01 23:03:20 +02:00

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;
};