summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI/IModRegistry.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/StardewModdingAPI/IModRegistry.cs')
-rw-r--r--src/StardewModdingAPI/IModRegistry.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/StardewModdingAPI/IModRegistry.cs b/src/StardewModdingAPI/IModRegistry.cs
deleted file mode 100644
index 5ef3fd65..00000000
--- a/src/StardewModdingAPI/IModRegistry.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using System.Collections.Generic;
-
-namespace StardewModdingAPI
-{
- /// <summary>Provides an API for fetching metadata about loaded mods.</summary>
- public interface IModRegistry : IModLinked
- {
- /// <summary>Get metadata for all loaded mods.</summary>
- IEnumerable<IManifest> GetAll();
-
- /// <summary>Get metadata for a loaded mod.</summary>
- /// <param name="uniqueID">The mod's unique ID.</param>
- /// <returns>Returns the matching mod's metadata, or <c>null</c> if not found.</returns>
- IManifest Get(string uniqueID);
-
- /// <summary>Get whether a mod has been loaded.</summary>
- /// <param name="uniqueID">The mod's unique ID.</param>
- bool IsLoaded(string uniqueID);
- }
-} \ No newline at end of file