summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI/IManifest.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/StardewModdingAPI/IManifest.cs')
-rw-r--r--src/StardewModdingAPI/IManifest.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/StardewModdingAPI/IManifest.cs b/src/StardewModdingAPI/IManifest.cs
index 38b83347..9533aadb 100644
--- a/src/StardewModdingAPI/IManifest.cs
+++ b/src/StardewModdingAPI/IManifest.cs
@@ -29,6 +29,9 @@ namespace StardewModdingAPI
/// <summary>The name of the DLL in the directory that has the <see cref="Mod.Entry"/> method.</summary>
string EntryDll { get; }
+ /// <summary>The other mods that must be loaded before this mod.</summary>
+ IManifestDependency[] Dependencies { get; }
+
/// <summary>Any manifest fields which didn't match a valid field.</summary>
IDictionary<string, object> ExtraFields { get; }
}