summaryrefslogtreecommitdiff
path: root/src/SMAPI/IManifestContentPackFor.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI/IManifestContentPackFor.cs')
-rw-r--r--src/SMAPI/IManifestContentPackFor.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/SMAPI/IManifestContentPackFor.cs b/src/SMAPI/IManifestContentPackFor.cs
deleted file mode 100644
index f05a3873..00000000
--- a/src/SMAPI/IManifestContentPackFor.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-namespace StardewModdingAPI
-{
- /// <summary>Indicates which mod can read the content pack represented by the containing manifest.</summary>
- public interface IManifestContentPackFor
- {
- /// <summary>The unique ID of the mod which can read this content pack.</summary>
- string UniqueID { get; }
-
- /// <summary>The minimum required version (if any).</summary>
- ISemanticVersion MinimumVersion { get; }
- }
-}