From the main menu, a short countdown loads the newest save. Any input cancels so a misclick does not dump you into a session.
11 lines
225 B
C#
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;
|
|
}
|