railroader-setons-special-s.../src/Modules/MiscTweaks/MiscTweaksSettings.cs
seton 16d118c4a9 MiscTweaks: cancellable autoload of the most recent save
From the main menu, a short countdown loads the newest save.
Any input cancels so a misclick does not dump you into a session.
2026-09-11 15:19:23 -04:00

11 lines
225 B
C#

using System;
namespace S3.Modules.MiscTweaks;
[Serializable]
public class MiscTweaksSettings
{
public bool enabled = false;
public bool autoLoadMostRecent = false;
public float autoLoadCountdownSeconds = 3f;
}