namespace SVSim.Database.Models.Config; /// /// When , fresh-signup viewers (via /tool/signup -> /// ) /// are initialised at MissionData.TutorialState = 100 — the post-tutorial baseline — /// instead of the prod default of 1 (TUTORIAL_STEP0). Intended for local dev / two- /// client PVP smoke where walking through the tutorial after every wiped identity is dead /// time. Off by default so prod-replicated captures still exercise the real tutorial flow. /// /// This only affects the anonymous signup path. /// (admin import + Steam-social) already lands at state 100 unconditionally. /// /// [ConfigSection("SkipTutorial")] public class SkipTutorialConfig { public bool Enabled { get; set; } = false; public static SkipTutorialConfig ShippedDefaults() => new(); }