From 27afb0ba38dcf0e74a4d09ba43e73261542b8e96 Mon Sep 17 00:00:00 2001 From: Emma Miler Date: Mon, 19 Dec 2022 19:32:16 +0100 Subject: Restructuring (#365) * Remove launcher proxy * Restructuring * More restructuring * Fix include dirs * Fix merge * Remove clang thing * Filters * Oops --- NorthstarDLL/bansystem.h | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 NorthstarDLL/bansystem.h (limited to 'NorthstarDLL/bansystem.h') diff --git a/NorthstarDLL/bansystem.h b/NorthstarDLL/bansystem.h deleted file mode 100644 index 6f180126..00000000 --- a/NorthstarDLL/bansystem.h +++ /dev/null @@ -1,19 +0,0 @@ -#pragma once -#include - -class ServerBanSystem -{ - private: - std::ofstream m_sBanlistStream; - std::vector 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; -- cgit v1.2.3