summaryrefslogtreecommitdiff
path: root/src/SMAPI/IManifest.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-02-18 14:18:41 -0500
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-02-18 14:18:41 -0500
commite7cb44efb7cc4fec1dc36c6110be0c948581be85 (patch)
treefa27e77f03415ddabb9c7060455c9a1eda099c8b /src/SMAPI/IManifest.cs
parent0c1bca3db044b6f228538f1738d52c31e4481e48 (diff)
parentf0cddebbe956262cb3645c6e9d27ca0cfb056125 (diff)
downloadSMAPI-e7cb44efb7cc4fec1dc36c6110be0c948581be85.tar.gz
SMAPI-e7cb44efb7cc4fec1dc36c6110be0c948581be85.tar.bz2
SMAPI-e7cb44efb7cc4fec1dc36c6110be0c948581be85.zip
Merge branch 'add-content-packs' into develop
Diffstat (limited to 'src/SMAPI/IManifest.cs')
-rw-r--r--src/SMAPI/IManifest.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/SMAPI/IManifest.cs b/src/SMAPI/IManifest.cs
index 9db1d538..183ac105 100644
--- a/src/SMAPI/IManifest.cs
+++ b/src/SMAPI/IManifest.cs
@@ -26,9 +26,12 @@ namespace StardewModdingAPI
/// <summary>The unique mod ID.</summary>
string UniqueID { get; }
- /// <summary>The name of the DLL in the directory that has the <see cref="IMod.Entry"/> method.</summary>
+ /// <summary>The name of the DLL in the directory that has the <see cref="IMod.Entry"/> method. Mutually exclusive with <see cref="EntryDll"/>.</summary>
string EntryDll { get; }
+ /// <summary>The mod which will read this as a content pack. Mutually exclusive with <see cref="EntryDll"/>.</summary>
+ IManifestContentPackFor ContentPackFor { get; }
+
/// <summary>The other mods that must be loaded before this mod.</summary>
IManifestDependency[] Dependencies { get; }