r5sdk/r5dev/tier1/utlvector.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

22 lines
436 B
C

//============ Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//
// A growable array class that maintains a free list and keeps elements
// in the same location
//===========================================================================//
#pragma once
#include "tier1/utlmemory.h"
struct __declspec(align(4)) CUtlVector
{
void* vtable;
CUtlMemory m_Memory;
int m_Size;
};