2018-04-08 17:50:58 -04:00
|
|
|
|
using SharedLibraryCore.Objects;
|
2018-03-18 22:24:06 -04:00
|
|
|
|
|
2018-04-08 17:50:58 -04:00
|
|
|
|
namespace IW4MAdmin.Plugins.Stats.Cheat
|
2018-03-18 22:24:06 -04:00
|
|
|
|
{
|
|
|
|
|
class DetectionPenaltyResult
|
|
|
|
|
{
|
2018-05-11 00:52:20 -04:00
|
|
|
|
public Detection.DetectionType Type { get; set; }
|
2018-03-18 22:24:06 -04:00
|
|
|
|
public Penalty.PenaltyType ClientPenalty { get; set; }
|
2018-05-11 00:52:20 -04:00
|
|
|
|
public double Value { get; set; }
|
|
|
|
|
public IW4Info.HitLocation Location { get; set; }
|
|
|
|
|
public int HitCount { get; set; }
|
2018-03-18 22:24:06 -04:00
|
|
|
|
}
|
|
|
|
|
}
|