From 2eabfbdf3772240cb0b43c37d7310285b6135541 Mon Sep 17 00:00:00 2001 From: RaidMax Date: Tue, 6 Mar 2018 01:21:09 -0600 Subject: [PATCH] commands aren't logged in chat a lot of stuff --- .../SimpleStats/Cheat/DetectionPenaltyResult.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Plugins/SimpleStats/Cheat/DetectionPenaltyResult.cs diff --git a/Plugins/SimpleStats/Cheat/DetectionPenaltyResult.cs b/Plugins/SimpleStats/Cheat/DetectionPenaltyResult.cs new file mode 100644 index 00000000..a53e1d6c --- /dev/null +++ b/Plugins/SimpleStats/Cheat/DetectionPenaltyResult.cs @@ -0,0 +1,17 @@ +using SharedLibrary.Objects; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace StatsPlugin.Cheat +{ + class DetectionPenaltyResult + { + public Penalty.PenaltyType ClientPenalty { get; set; } + public double RatioAmount { get; set; } + public IW4Info.HitLocation Bone { get; set; } + public int KillCount { get; set; } + } +}