summaryrefslogtreecommitdiff
path: root/StardewModdingAPI/Mod.cs
diff options
context:
space:
mode:
authorZoryn <Zoryn4163@users.noreply.github.com>2016-03-20 18:51:04 -0400
committerZoryn <Zoryn4163@users.noreply.github.com>2016-03-20 18:51:04 -0400
commit280d77c9750d33a7557792625fa3ad35c2c923fd (patch)
tree173d14dfc578d5f8b7f225b729742b977e910246 /StardewModdingAPI/Mod.cs
parent14c781345315c97aed958d71dbd5e896cedc25f3 (diff)
parent17021ae35162cfa4a6dad2c0457d4981f38878bc (diff)
downloadSMAPI-280d77c9750d33a7557792625fa3ad35c2c923fd.tar.gz
SMAPI-280d77c9750d33a7557792625fa3ad35c2c923fd.tar.bz2
SMAPI-280d77c9750d33a7557792625fa3ad35c2c923fd.zip
Merge pull request #36 from Zoryn4163/master
forgot to merge for 38.1
Diffstat (limited to 'StardewModdingAPI/Mod.cs')
-rw-r--r--StardewModdingAPI/Mod.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/StardewModdingAPI/Mod.cs b/StardewModdingAPI/Mod.cs
index 4b923fd7..b323b6ec 100644
--- a/StardewModdingAPI/Mod.cs
+++ b/StardewModdingAPI/Mod.cs
@@ -9,6 +9,31 @@ namespace StardewModdingAPI
public class Mod
{
/// <summary>
+ /// The name of your mod.
+ /// NOTE: THIS IS DEPRECATED AND WILL BE REMOVED IN THE NEXT VERSION OF SMAPI
+ /// </summary>
+ public virtual string Name { get; set; }
+
+ /// <summary>
+ /// The name of the mod's authour.
+ /// NOTE: THIS IS DEPRECATED AND WILL BE REMOVED IN THE NEXT VERSION OF SMAPI
+ /// </summary>
+ public virtual string Authour { get; set; }
+
+ /// <summary>
+ /// The version of the mod.
+ /// NOTE: THIS IS DEPRECATED AND WILL BE REMOVED IN THE NEXT VERSION OF SMAPI
+ /// </summary>
+ public virtual string Version { get; set; }
+
+ /// <summary>
+ /// A description of the mod.
+ /// NOTE: THIS IS DEPRECATED AND WILL BE REMOVED IN THE NEXT VERSION OF SMAPI
+ /// </summary>
+ public virtual string Description { get; set; }
+
+
+ /// <summary>
/// The mod's manifest
/// </summary>
public Manifest Manifest { get; internal set; }