summaryrefslogtreecommitdiff
path: root/StardewModdingAPI/Manifest.cs
diff options
context:
space:
mode:
Diffstat (limited to 'StardewModdingAPI/Manifest.cs')
-rw-r--r--StardewModdingAPI/Manifest.cs16
1 files changed, 8 insertions, 8 deletions
diff --git a/StardewModdingAPI/Manifest.cs b/StardewModdingAPI/Manifest.cs
index a1a9b6fb..162ab399 100644
--- a/StardewModdingAPI/Manifest.cs
+++ b/StardewModdingAPI/Manifest.cs
@@ -5,37 +5,37 @@ namespace StardewModdingAPI
public class Manifest : Config
{
/// <summary>
- /// The name of your mod.
+ /// The name of your mod.
/// </summary>
public virtual string Name { get; set; }
/// <summary>
- /// The name of the mod's authour.
+ /// The name of the mod's authour.
/// </summary>
public virtual string Authour { get; set; }
/// <summary>
- /// The version of the mod.
+ /// The version of the mod.
/// </summary>
public virtual Version Version { get; set; }
/// <summary>
- /// A description of the mod.
+ /// A description of the mod.
/// </summary>
public virtual string Description { get; set; }
/// <summary>
- /// The unique ID of the mod. It doesn't *need* to be anything.
+ /// The unique ID of the mod. It doesn't *need* to be anything.
/// </summary>
public virtual string UniqueID { get; set; }
/// <summary>
- /// Whether or not the mod uses per-save-config files.
+ /// Whether or not the mod uses per-save-config files.
/// </summary>
public virtual bool PerSaveConfigs { get; set; }
/// <summary>
- /// The name of the DLL in the directory that has the Entry() method.
+ /// The name of the DLL in the directory that has the Entry() method.
/// </summary>
public virtual string EntryDll { get; set; }
@@ -51,4 +51,4 @@ namespace StardewModdingAPI
return this as T;
}
}
-}
+} \ No newline at end of file