2019-01-06 15:21:06 +08:00
|
|
|
using StardewModdingAPI;
|
|
|
|
|
2018-12-30 18:00:05 +08:00
|
|
|
namespace Omegasis.BuyBackCollectables.Framework
|
2017-08-06 03:51:44 +08:00
|
|
|
{
|
|
|
|
/// <summary>The mod configuration.</summary>
|
|
|
|
internal class ModConfig
|
|
|
|
{
|
|
|
|
/// <summary>The key which shows the menu.</summary>
|
2019-01-06 15:21:06 +08:00
|
|
|
public SButton KeyBinding { get; set; } = SButton.B;
|
2017-08-06 03:51:44 +08:00
|
|
|
|
|
|
|
/// <summary>The multiplier applied to the cost of buying back a collectable.</summary>
|
|
|
|
public double CostMultiplier { get; set; } = 3.0;
|
|
|
|
}
|
|
|
|
}
|