summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI/IManifest.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-10-07 23:20:36 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-10-07 23:20:36 -0400
commitd0dd2f7ba729de6be749d326a2fed78988ba9d7b (patch)
treea22127da6a8900e9f29bbb847bfd5d3347f6b952 /src/StardewModdingAPI/IManifest.cs
parent7889676ea24cafc945899bf25608784e3f5bc9e0 (diff)
parent5928f5f86c4493ddb6b89bce0b7d0fb73a884c09 (diff)
downloadSMAPI-d0dd2f7ba729de6be749d326a2fed78988ba9d7b.tar.gz
SMAPI-d0dd2f7ba729de6be749d326a2fed78988ba9d7b.tar.bz2
SMAPI-d0dd2f7ba729de6be749d326a2fed78988ba9d7b.zip
Merge branch 'add-mod-build-config' into develop
Diffstat (limited to 'src/StardewModdingAPI/IManifest.cs')
-rw-r--r--src/StardewModdingAPI/IManifest.cs41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/StardewModdingAPI/IManifest.cs b/src/StardewModdingAPI/IManifest.cs
deleted file mode 100644
index 9db1d538..00000000
--- a/src/StardewModdingAPI/IManifest.cs
+++ /dev/null
@@ -1,41 +0,0 @@
-using System.Collections.Generic;
-
-namespace StardewModdingAPI
-{
- /// <summary>A manifest which describes a mod for SMAPI.</summary>
- public interface IManifest
- {
- /*********
- ** Accessors
- *********/
- /// <summary>The mod name.</summary>
- string Name { get; }
-
- /// <summary>A brief description of the mod.</summary>
- string Description { get; }
-
- /// <summary>The mod author's name.</summary>
- string Author { get; }
-
- /// <summary>The mod version.</summary>
- ISemanticVersion Version { get; }
-
- /// <summary>The minimum SMAPI version required by this mod, if any.</summary>
- ISemanticVersion MinimumApiVersion { get; }
-
- /// <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>
- string EntryDll { get; }
-
- /// <summary>The other mods that must be loaded before this mod.</summary>
- IManifestDependency[] Dependencies { get; }
-
- /// <summary>The namespaced mod IDs to query for updates (like <c>Nexus:541</c>).</summary>
- string[] UpdateKeys { get; set; }
-
- /// <summary>Any manifest fields which didn't match a valid field.</summary>
- IDictionary<string, object> ExtraFields { get; }
- }
-}