summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI.Toolkit.CoreInterfaces/IManifestContentPackFor.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-06-24 21:51:51 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-06-24 21:51:51 -0400
commitb08e27d13a1f0c82656df95212fc40588b3b5314 (patch)
treead38bb6d5bffc699ff0ba0ee0d5cd8e82f929a5f /src/StardewModdingAPI.Toolkit.CoreInterfaces/IManifestContentPackFor.cs
parent316242eeb2b6b6e711ab98f64c147a59c1d0aab8 (diff)
downloadSMAPI-b08e27d13a1f0c82656df95212fc40588b3b5314.tar.gz
SMAPI-b08e27d13a1f0c82656df95212fc40588b3b5314.tar.bz2
SMAPI-b08e27d13a1f0c82656df95212fc40588b3b5314.zip
merge IManifest interfaces into new project (#532)
Diffstat (limited to 'src/StardewModdingAPI.Toolkit.CoreInterfaces/IManifestContentPackFor.cs')
-rw-r--r--src/StardewModdingAPI.Toolkit.CoreInterfaces/IManifestContentPackFor.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/StardewModdingAPI.Toolkit.CoreInterfaces/IManifestContentPackFor.cs b/src/StardewModdingAPI.Toolkit.CoreInterfaces/IManifestContentPackFor.cs
new file mode 100644
index 00000000..f05a3873
--- /dev/null
+++ b/src/StardewModdingAPI.Toolkit.CoreInterfaces/IManifestContentPackFor.cs
@@ -0,0 +1,12 @@
+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; }
+ }
+}