summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI/Framework/ModLoading/ModDependencyStatus.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/StardewModdingAPI/Framework/ModLoading/ModDependencyStatus.cs')
-rw-r--r--src/StardewModdingAPI/Framework/ModLoading/ModDependencyStatus.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/StardewModdingAPI/Framework/ModLoading/ModDependencyStatus.cs b/src/StardewModdingAPI/Framework/ModLoading/ModDependencyStatus.cs
deleted file mode 100644
index 0774b487..00000000
--- a/src/StardewModdingAPI/Framework/ModLoading/ModDependencyStatus.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-namespace StardewModdingAPI.Framework.ModLoading
-{
- /// <summary>The status of a given mod in the dependency-sorting algorithm.</summary>
- internal enum ModDependencyStatus
- {
- /// <summary>The mod hasn't been visited yet.</summary>
- Queued,
-
- /// <summary>The mod is currently being analysed as part of a dependency chain.</summary>
- Checking,
-
- /// <summary>The mod has already been sorted.</summary>
- Sorted,
-
- /// <summary>The mod couldn't be sorted due to a metadata issue (e.g. missing dependencies).</summary>
- Failed
- }
-}