19 lines
405 B
C#
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;
|
|
}
|
|
} |