summaryrefslogtreecommitdiffstats
path: root/src/References.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/References.h')
-rw-r--r--src/References.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/References.h b/src/References.h
new file mode 100644
index 00000000..5ee20d38
--- /dev/null
+++ b/src/References.h
@@ -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);
+};