first commit
This commit is contained in:
17
src/References.h
Normal file
17
src/References.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
|
||||
class CEntity;
|
||||
|
||||
struct CReference
|
||||
{
|
||||
CReference *next;
|
||||
CEntity **pentity;
|
||||
};
|
||||
|
||||
class CReferences
|
||||
{
|
||||
static CReference *aRefs; //[NUMREFERENCES];
|
||||
public:
|
||||
static CReference *&pEmptyList;
|
||||
static void Init(void);
|
||||
};
|
||||
Reference in New Issue
Block a user