namespace WacK.Configuration
{
///
/// Player-configured settings that affect gameplay mechanics.
/// Can
///
public class PlaySettings
{
///
/// Scroll speed multiplier.
///
public static Config playSpeedMultiplier =
new("PlaySettings", "playSpeedMultiplier", 4f);
///
/// How much to shift song audio by in seconds.
///
public static Config audioOffset =
new("PlaySettings", "audioOffset", 0f);
}
}