aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDLL/server/auth/bansystem.h
diff options
context:
space:
mode:
Diffstat (limited to 'NorthstarDLL/server/auth/bansystem.h')
-rw-r--r--NorthstarDLL/server/auth/bansystem.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/NorthstarDLL/server/auth/bansystem.h b/NorthstarDLL/server/auth/bansystem.h
deleted file mode 100644
index d6ac5a4f..00000000
--- a/NorthstarDLL/server/auth/bansystem.h
+++ /dev/null
@@ -1,19 +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_pBanSystem;