summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI/Framework/DeprecationLevel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/StardewModdingAPI/Framework/DeprecationLevel.cs')
-rw-r--r--src/StardewModdingAPI/Framework/DeprecationLevel.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/StardewModdingAPI/Framework/DeprecationLevel.cs b/src/StardewModdingAPI/Framework/DeprecationLevel.cs
deleted file mode 100644
index c0044053..00000000
--- a/src/StardewModdingAPI/Framework/DeprecationLevel.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-namespace StardewModdingAPI.Framework
-{
- /// <summary>Indicates how deprecated something is.</summary>
- internal enum DeprecationLevel
- {
- /// <summary>It's deprecated but won't be removed soon. Mod authors have some time to update their mods. Deprecation warnings should be logged, but not written to the console.</summary>
- Notice,
-
- /// <summary>Mods should no longer be using it. Deprecation messages should be debug entries in the console.</summary>
- Info,
-
- /// <summary>The code will be removed soon. Deprecation messages should be warnings in the console.</summary>
- PendingRemoval
- }
-} \ No newline at end of file