namespace StardewModdingAPI.Framework
{
/// A delegate which requests that SMAPI immediately exit the game. This should only be invoked when an irrecoverable fatal error happens that risks save corruption or game-breaking bugs.
/// The module which requested an immediate exit.
/// The reason provided for the shutdown.
internal delegate void RequestExitDelegate(string module, string reason);
}