1
0
mirror of https://github.com/td512/re3.git synced 2026-01-19 12:17:48 +00:00
td512.re3/src/core/References.h
2019-07-07 13:09:11 +02:00

21 lines
320 B
C++

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