2018-04-08 17:50:58 -04:00
|
|
|
|
using SharedLibraryCore.Objects;
|
2018-03-18 22:24:06 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2018-04-08 17:50:58 -04:00
|
|
|
|
namespace IW4MAdmin.Plugins.Stats.Cheat
|
2018-03-18 22:24:06 -04:00
|
|
|
|
{
|
|
|
|
|
class DetectionPenaltyResult
|
|
|
|
|
{
|
|
|
|
|
public Penalty.PenaltyType ClientPenalty { get; set; }
|
|
|
|
|
public double RatioAmount { get; set; }
|
|
|
|
|
public IW4Info.HitLocation Bone { get; set; }
|
|
|
|
|
public int KillCount { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|