mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-10-31 23:55:54 +00:00
18 lines
228 B
C
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);
|
||
|
};
|