-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModConfig.cs
More file actions
26 lines (22 loc) · 876 Bytes
/
Copy pathModConfig.cs
File metadata and controls
26 lines (22 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
namespace WeaponShipping
{
public class ModConfig
{
// Category toggles
public bool EnableWeapons { get; set; } = true;
public bool EnableClothing { get; set; } = true;
public bool EnableHats { get; set; } = true;
public bool EnableBoots { get; set; } = true;
public bool EnableRings { get; set; } = true;
// Pricing
public float PriceMultiplier { get; set; } = 1.0f;
public int MinimumSellPrice { get; set; } = 100;
public bool UseDamageFormulaForUnknownWeapons { get; set; } = true;
// Skillful Clothes Revamp integration
public bool EnableSkillfulClothesIntegration { get; set; } = true;
// Display
public bool ShowBinContentsHUD { get; set; } = true;
// Misc
public bool VerboseLogging { get; set; } = false;
}
}