blob: c8017c0d47a34eae7695b5f723168906c85498c6 (
plain) (
tree)
|
|
#pragma once
class CEntity;
struct CReference
{
CReference *next;
CEntity **pentity;
};
class CReferences
{
public:
static CReference *aRefs; //[NUMREFERENCES];
static CReference *&pEmptyList;
static void Init(void);
};
|