10 lines
229 B
C#
10 lines
229 B
C#
|
namespace Omegasis.AutoSpeed.Framework
|
|||
|
{
|
|||
|
/// <summary>The mod configuration.</summary>
|
|||
|
internal class ModConfig
|
|||
|
{
|
|||
|
/// <summary>The added speed.</summary>
|
|||
|
public int Speed { get; set; } = 1;
|
|||
|
}
|
|||
|
}
|