IW4M-Admin/Plugins/ProfanityDeterment/Tracking.cs
RaidMax 25cefb8b6a removed old plugins
added v0.1 of profanity determent plugin
2018-03-28 23:40:57 -05:00

20 lines
384 B
C#

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;
}
}
}