2018-04-10 20:36:28 -04:00
|
|
|
|
using System;
|
2018-03-29 00:40:57 -04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
2018-04-10 20:36:28 -04:00
|
|
|
|
using SharedLibraryCore.Objects;
|
2018-03-29 00:40:57 -04:00
|
|
|
|
|
2018-04-10 20:36:28 -04:00
|
|
|
|
namespace IW4MAdmin.Plugins.ProfanityDeterment
|
2018-03-29 00:40:57 -04:00
|
|
|
|
{
|
|
|
|
|
class Tracking
|
|
|
|
|
{
|
|
|
|
|
public Player Client { get; private set; }
|
|
|
|
|
public int Infringements { get; set; }
|
|
|
|
|
|
|
|
|
|
public Tracking(Player client)
|
|
|
|
|
{
|
|
|
|
|
Client = client;
|
|
|
|
|
Infringements = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|