summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI/IMonitor.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-10-07 23:20:36 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-10-07 23:20:36 -0400
commitd0dd2f7ba729de6be749d326a2fed78988ba9d7b (patch)
treea22127da6a8900e9f29bbb847bfd5d3347f6b952 /src/StardewModdingAPI/IMonitor.cs
parent7889676ea24cafc945899bf25608784e3f5bc9e0 (diff)
parent5928f5f86c4493ddb6b89bce0b7d0fb73a884c09 (diff)
downloadSMAPI-d0dd2f7ba729de6be749d326a2fed78988ba9d7b.tar.gz
SMAPI-d0dd2f7ba729de6be749d326a2fed78988ba9d7b.tar.bz2
SMAPI-d0dd2f7ba729de6be749d326a2fed78988ba9d7b.zip
Merge branch 'add-mod-build-config' into develop
Diffstat (limited to 'src/StardewModdingAPI/IMonitor.cs')
-rw-r--r--src/StardewModdingAPI/IMonitor.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/StardewModdingAPI/IMonitor.cs b/src/StardewModdingAPI/IMonitor.cs
deleted file mode 100644
index 62c479bc..00000000
--- a/src/StardewModdingAPI/IMonitor.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-namespace StardewModdingAPI
-{
- /// <summary>Encapsulates monitoring and logging for a given module.</summary>
- public interface IMonitor
- {
- /*********
- ** Accessors
- *********/
- /// <summary>Whether SMAPI is aborting. Mods don't need to worry about this unless they have background tasks.</summary>
- bool IsExiting { get; }
-
-
- /*********
- ** Methods
- *********/
- /// <summary>Log a message for the player or developer.</summary>
- /// <param name="message">The message to log.</param>
- /// <param name="level">The log severity level.</param>
- void Log(string message, LogLevel level = LogLevel.Debug);
-
- /// <summary>Immediately exit the game without saving. This should only be invoked when an irrecoverable fatal error happens that risks save corruption or game-breaking bugs.</summary>
- /// <param name="reason">The reason for the shutdown.</param>
- void ExitGameImmediately(string reason);
- }
-}