mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
24 lines
484 B
C
24 lines
484 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
|
||
|
//===========================================================================//
|
||
|
|
||
|
#ifndef UTLVECTOR_H
|
||
|
#define UTLVECTOR_H
|
||
|
|
||
|
#include "tier1/utlmemory.h"
|
||
|
|
||
|
struct __declspec(align(4)) CUtlVector
|
||
|
{
|
||
|
void* vtable;
|
||
|
CUtlMemory m_Memory;
|
||
|
int m_Size;
|
||
|
};
|
||
|
|
||
|
#endif // CCVECTOR_H
|