0
0
mirror of https://github.com/sp-tarkov/loot-dump-processor.git synced 2025-02-13 08:50:44 -05:00

19 lines
565 B
C#

namespace LootDumpProcessor.Model.Input;
public readonly record struct BTRServerSettings(
float ChanceSpawn,
Vector3 SpawnPeriod,
float MoveSpeed,
float ReadyToDepartureTime,
float CheckTurnDistanceTime,
float TurnCheckSensitivity,
float DecreaseSpeedOnTurnLimit,
float EndSplineDecelerationDistance,
float AccelerationSpeed,
float DecelerationSpeed,
Vector3 PauseDurationRange,
float BodySwingReturnSpeed,
float BodySwingDamping,
float BodySwingIntensity,
ServerMapBTRSettings ServerMapBTRSettings
);