Stardew_Valley_Mods/GeneralMods/AutoSpeed/Framework/ModConfig.cs

10 lines
226 B
C#
Raw Normal View History

namespace Omegasis.AutoSpeed.Framework
{
/// <summary>The mod configuration.</summary>
internal class ModConfig
{
/// <summary>The added speed.</summary>
public int Speed { get; set; } = 5;
}
}