Files
WacK/Scripts/Configuration/PlaySettings.cs
T
2023-09-17 23:51:50 -07:00

19 lines
405 B
C#

namespace WacK.Configuration
{
/// <summary>
/// Player-configured settings that affect gameplay mechanics.
/// Can
/// </summary>
public class PlaySettings
{
/// <summary>
/// Scroll speed multiplier.
/// </summary>
public static float playSpeedMultiplier = 2f;
/// <summary>
/// How much to shift song audio by in seconds.
/// </summary>
public static float audioOffset = 0f;
}
}