Restructure some configuration things

This commit is contained in:
msk
2023-09-17 23:51:50 -07:00
parent 5f2a13a7a6
commit 879a2aa2f4
7 changed files with 34 additions and 54 deletions
+12
View File
@@ -1,7 +1,19 @@
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;
}
}