0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 09:50:43 -05:00
modules/project/Aki.Custom/Models/DefaultRaidSettings.cs

29 lines
901 B
C#

using EFT.Bots;
namespace Aki.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;
}
}
}