mirror of
https://github.com/sp-tarkov/loot-dump-processor.git
synced 2025-02-13 09:50:44 -05:00
The changes include: - Replaced Newtonsoft.Json with System.Text.Json for serialization - Removed redundant JsonProperty attributes and simplified model classes - Converted static fields to constants where appropriate - Improved code formatting and readability - Simplified method bodies and expressions - Removed unused imports and cleaned up namespaces
19 lines
792 B
C#
19 lines
792 B
C#
namespace LootDumpProcessor.Model.Input;
|
|
|
|
public class BotLocationModifier
|
|
{
|
|
public float? AccuracySpeed { get; set; }
|
|
public float? Scattering { get; set; }
|
|
public float? GainSight { get; set; }
|
|
public float? MarksmanAccuratyCoef { get; set; }
|
|
public float? VisibleDistance { get; set; }
|
|
public float? DistToPersueAxemanCoef { get; set; }
|
|
public int? KhorovodChance { get; set; }
|
|
public float? MinExfiltrationTime { get; set; }
|
|
public float? MaxExfiltrationTime { get; set; }
|
|
public float? DistToActivatePvE { get; set; }
|
|
public float? DistToSleepPvE { get; set; }
|
|
public float? DistToActivate { get; set; }
|
|
public float? DistToSleep { get; set; }
|
|
public List<AdditionalHostilitySetting>? AdditionalHostilitySettings { get; set; }
|
|
} |