From 22fe2d8716b81821908f0f6631cd3384d8af66c7 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Wed, 16 Nov 2016 22:41:27 -0500 Subject: minor tweaks --- src/StardewModdingAPI/Mod.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/StardewModdingAPI/Mod.cs') 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 *********/ - /// The entry point for your mod. It will always be called once when the mod loads. + /// The mod entry point, called after the mod is first loaded. [Obsolete("This overload is obsolete since SMAPI 1.0.")] public virtual void Entry(params object[] objects) { } - /// The entry point for your mod. It will always be called once when the mod loads. + /// The mod entry point, called after the mod is first loaded. /// Provides methods for interacting with the mod directory, such as read/writing a config file or custom JSON files. [Obsolete("This overload is obsolete since SMAPI 1.1.")] public virtual void Entry(ModHelper helper) { } - /// The entry point for your mod. It will always be called once when the mod loads. + /// The mod entry point, called after the mod is first loaded. /// Provides methods for interacting with the mod directory, such as read/writing a config file or custom JSON files. public virtual void Entry(IModHelper helper) { } -- cgit