diff options
Diffstat (limited to 'StardewModdingAPI/Mod.cs')
-rw-r--r-- | StardewModdingAPI/Mod.cs | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/StardewModdingAPI/Mod.cs b/StardewModdingAPI/Mod.cs index a196c3a2..4b923fd7 100644 --- a/StardewModdingAPI/Mod.cs +++ b/StardewModdingAPI/Mod.cs @@ -9,24 +9,9 @@ namespace StardewModdingAPI public class Mod { /// <summary> - /// The name of your mod. + /// The mod's manifest /// </summary> - public virtual string Name { get; protected set; } - - /// <summary> - /// The name of the mod's authour. - /// </summary> - public virtual string Authour { get; protected set; } - - /// <summary> - /// The version of the mod. - /// </summary> - public virtual string Version { get; protected set; } - - /// <summary> - /// A description of the mod. - /// </summary> - public virtual string Description { get; protected set; } + public Manifest Manifest { get; internal set; } /// <summary> /// Where the mod is located on the disk. |