the great reorganization
This commit is contained in:
20
src/core/References.h
Normal file
20
src/core/References.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#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);
|
||||
};
|
||||
Reference in New Issue
Block a user