0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 06:30:43 -05:00
modules/project/SPT.Custom/Models/DefaultRaidSettings.cs
2024-05-21 19:10:17 +01:00

29 lines
901 B
C#

using EFT.Bots;
namespace SPT.Custom.Models
{
public class DefaultRaidSettings
{
public EBotAmount AiAmount;
public EBotDifficulty AiDifficulty;
public bool BossEnabled;
public bool ScavWars;
public bool TaggedAndCursed;
public bool EnablePve;
public bool RandomWeather;
public bool RandomTime;
public DefaultRaidSettings(EBotAmount aiAmount, EBotDifficulty aiDifficulty, bool bossEnabled, bool scavWars, bool taggedAndCursed, bool enablePve, bool randomWeather, bool randomTime)
{
AiAmount = aiAmount;
AiDifficulty = aiDifficulty;
BossEnabled = bossEnabled;
ScavWars = scavWars;
TaggedAndCursed = taggedAndCursed;
EnablePve = enablePve;
RandomWeather = randomWeather;
RandomTime = randomTime;
}
}
}