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