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