re3/src/References.h

18 lines
228 B
C++

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