iw4x-client/src/Components/Modules/Bans.hpp

16 lines
230 B
C++
Raw Normal View History

2016-08-15 10:40:30 -04:00
namespace Components
{
class Bans : public Component
{
public:
Bans();
~Bans();
#ifdef DEBUG
const char* GetName() { return "Bans"; };
#endif
static void BanClientNum(int num, std::string reason);
};
}