aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDedicatedTest/bansystem.h
diff options
context:
space:
mode:
Diffstat (limited to 'NorthstarDedicatedTest/bansystem.h')
-rw-r--r--NorthstarDedicatedTest/bansystem.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/NorthstarDedicatedTest/bansystem.h b/NorthstarDedicatedTest/bansystem.h
deleted file mode 100644
index e78094bf..00000000
--- a/NorthstarDedicatedTest/bansystem.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#pragma once
-#include <fstream>
-
-class ServerBanSystem
-{
- private:
- std::ofstream m_sBanlistStream;
- std::vector<uint64_t> m_vBannedUids;
-
- public:
- void OpenBanlist();
- void ReloadBanlist();
- void ClearBanlist();
- void BanUID(uint64_t uid);
- void UnbanUID(uint64_t uid);
- bool IsUIDAllowed(uint64_t uid);
-};
-
-extern ServerBanSystem* g_ServerBanSystem;
-
-void InitialiseBanSystem(HMODULE baseAddress); \ No newline at end of file