namespace StardewModdingAPI.Framework { /// The SMAPI exit state. internal enum ExitState { /// SMAPI didn't trigger an explicit exit. None, /// The game is exiting normally. GameExit, /// The game is exiting due to an error. Crash } }