summaryrefslogtreecommitdiff
path: root/src/SMAPI/Enums
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI/Enums')
-rw-r--r--src/SMAPI/Enums/LoadStage.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/SMAPI/Enums/LoadStage.cs b/src/SMAPI/Enums/LoadStage.cs
index aa95d201..250c88e9 100644
--- a/src/SMAPI/Enums/LoadStage.cs
+++ b/src/SMAPI/Enums/LoadStage.cs
@@ -37,6 +37,9 @@ namespace StardewModdingAPI.Enums
Loaded,
/// <summary>The save is fully loaded, the world has been initialized, and <see cref="Context.IsWorldReady"/> is now true.</summary>
- Ready
+ Ready,
+
+ /// <summary>The game is exiting the loaded save and returning to the title screen. This happens before it returns to title; see <see cref="None"/> after it returns.</summary>
+ ReturningToTitle
}
}