aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDedicatedTest/tier0.h
diff options
context:
space:
mode:
Diffstat (limited to 'NorthstarDedicatedTest/tier0.h')
-rw-r--r--NorthstarDedicatedTest/tier0.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/NorthstarDedicatedTest/tier0.h b/NorthstarDedicatedTest/tier0.h
deleted file mode 100644
index 5375608c..00000000
--- a/NorthstarDedicatedTest/tier0.h
+++ /dev/null
@@ -1,32 +0,0 @@
-#pragma once
-#include "pch.h"
-#include "gameutils.h"
-
-// get exported tier0 by name
-void* ResolveTier0Function(const char* name);
-
-// memory stuff
-class IMemAlloc
-{
-public:
- struct VTable
- {
- void* unknown[1];
- void* (*Alloc) (IMemAlloc* memAlloc, size_t nSize);
- void* unknown2[3];
- void(*Free) (IMemAlloc* memAlloc, void* pMem);
- };
-
- VTable* m_vtable;
-};
-
-void* operator new(std::size_t n);
-void operator delete(void* p) throw();
-
-// actual function defs
-// would've liked to resolve these at compile time, but we load before tier0 so not really possible
-void Error(const char* fmt, ...);
-
-double Plat_FloatTime();
-
-CCommandLine* CommandLine(); \ No newline at end of file