mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-11 07:40:54 -05:00
removed old plugins
added v0.1 of profanity determent plugin
This commit is contained in:
19
Plugins/ProfanityDeterment/Tracking.cs
Normal file
19
Plugins/ProfanityDeterment/Tracking.cs
Normal file
@ -0,0 +1,19 @@
|
||||
using SharedLibrary.Objects;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ProfanityDeterment
|
||||
{
|
||||
class Tracking
|
||||
{
|
||||
public Player Client { get; private set; }
|
||||
public int Infringements { get; set; }
|
||||
|
||||
public Tracking(Player client)
|
||||
{
|
||||
Client = client;
|
||||
Infringements = 0;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user