summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2016-11-16 22:41:27 -0500
committerJesse Plamondon-Willard <github@jplamondonw.com>2016-11-16 22:41:27 -0500
commit22fe2d8716b81821908f0f6631cd3384d8af66c7 (patch)
tree81dde147eb9c4358c119fc8333377d786eb0670d /src/StardewModdingAPI
parentfa5c6ff0665b5a7fb0759f60facafd87b04dc659 (diff)
downloadSMAPI-22fe2d8716b81821908f0f6631cd3384d8af66c7.tar.gz
SMAPI-22fe2d8716b81821908f0f6631cd3384d8af66c7.tar.bz2
SMAPI-22fe2d8716b81821908f0f6631cd3384d8af66c7.zip
minor tweaks
Diffstat (limited to 'src/StardewModdingAPI')
-rw-r--r--src/StardewModdingAPI/Mod.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/StardewModdingAPI/Mod.cs b/src/StardewModdingAPI/Mod.cs
index 23002c1f..05122df5 100644
--- a/src/StardewModdingAPI/Mod.cs
+++ b/src/StardewModdingAPI/Mod.cs
@@ -69,16 +69,16 @@ namespace StardewModdingAPI
/*********
** Public methods
*********/
- /// <summary>The entry point for your mod. It will always be called once when the mod loads.</summary>
+ /// <summary>The mod entry point, called after the mod is first loaded.</summary>
[Obsolete("This overload is obsolete since SMAPI 1.0.")]
public virtual void Entry(params object[] objects) { }
- /// <summary>The entry point for your mod. It will always be called once when the mod loads.</summary>
+ /// <summary>The mod entry point, called after the mod is first loaded.</summary>
/// <param name="helper">Provides methods for interacting with the mod directory, such as read/writing a config file or custom JSON files.</param>
[Obsolete("This overload is obsolete since SMAPI 1.1.")]
public virtual void Entry(ModHelper helper) { }
- /// <summary>The entry point for your mod. It will always be called once when the mod loads.</summary>
+ /// <summary>The mod entry point, called after the mod is first loaded.</summary>
/// <param name="helper">Provides methods for interacting with the mod directory, such as read/writing a config file or custom JSON files.</param>
public virtual void Entry(IModHelper helper) { }