summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI/IManifest.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-09-23 20:16:52 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-09-23 20:16:52 -0400
commit36a04a6e77eac74be660dc9848b6045834479f4f (patch)
tree1176a8920a7656f720e0b36ebc4fe45b26cc202a /src/StardewModdingAPI/IManifest.cs
parentf0e2117f70455bd9883321ae5b0bf40562f2d5de (diff)
parent57111a6e8fa6a23bb56f515b50f8b7ea5924d49f (diff)
downloadSMAPI-36a04a6e77eac74be660dc9848b6045834479f4f.tar.gz
SMAPI-36a04a6e77eac74be660dc9848b6045834479f4f.tar.bz2
SMAPI-36a04a6e77eac74be660dc9848b6045834479f4f.zip
Merge branch 'feature/update-check-api' into develop
Diffstat (limited to 'src/StardewModdingAPI/IManifest.cs')
-rw-r--r--src/StardewModdingAPI/IManifest.cs10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/StardewModdingAPI/IManifest.cs b/src/StardewModdingAPI/IManifest.cs
index 407db1ce..28f6570c 100644
--- a/src/StardewModdingAPI/IManifest.cs
+++ b/src/StardewModdingAPI/IManifest.cs
@@ -1,4 +1,4 @@
-using System.Collections.Generic;
+using System.Collections.Generic;
namespace StardewModdingAPI
{
@@ -32,7 +32,13 @@ namespace StardewModdingAPI
/// <summary>The other mods that must be loaded before this mod.</summary>
IManifestDependency[] Dependencies { get; }
+ /// <summary>The mod's unique ID in Nexus Mods (if any), used for update checks.</summary>
+ string NexusID { get; set; }
+
+ /// <summary>The mod's organisation and project name on GitHub (if any), used for update checks.</summary>
+ string GitHubProject { get; set; }
+
/// <summary>Any manifest fields which didn't match a valid field.</summary>
IDictionary<string, object> ExtraFields { get; }
}
-} \ No newline at end of file
+}