namespace GUPS.AntiCheat.Monitor.Time { /// /// Enumeration representing different types of time deviations that can occur. /// /// /// /// The enum defines the possible types of time deviations that may occur during time comparisons for cheat detection. /// Each member represents a specific kind of deviation, including no deviation (), time stopping (), /// time slowing down (), and time speeding up (). /// /// public enum ETimeDeviation : byte { /// /// No time deviation. /// None = 0, /// /// Indicates that time has stopped. /// Stopped = 1, /// /// Indicates that time is slowing down. /// SlowedDown = 2, /// /// Indicates that time is speeding up. /// SpeedUp = 3 } }