20 lines
406 B
C#
20 lines
406 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using SharedLibraryCore.Objects;
|
|
|
|
namespace IW4MAdmin.Plugins.ProfanityDeterment
|
|
{
|
|
class Tracking
|
|
{
|
|
public Player Client { get; private set; }
|
|
public int Infringements { get; set; }
|
|
|
|
public Tracking(Player client)
|
|
{
|
|
Client = client;
|
|
Infringements = 0;
|
|
}
|
|
}
|
|
}
|