1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-08 06:08:20 -05:00
RaidMax 433436293a 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;
}
}
}