namespace Omegasis.BuyBackCollectables.Framework { /// The mod configuration. internal class ModConfig { /// The key which shows the menu. public string KeyBinding { get; set; } = "B"; /// The multiplier applied to the cost of buying back a collectable. public double CostMultiplier { get; set; } = 3.0; } }