1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-17 23:23:12 +00:00
re3/src/References.h

18 lines
228 B
C
Raw Normal View History

2019-05-15 14:52:37 +00:00
#pragma once
class CEntity;
struct CReference
{
CReference *next;
CEntity **pentity;
};
class CReferences
{
static CReference *aRefs; //[NUMREFERENCES];
public:
static CReference *&pEmptyList;
static void Init(void);
};