summaryrefslogtreecommitdiff
path: root/src/TrainerMod
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2016-12-09 12:25:53 -0500
committerJesse Plamondon-Willard <github@jplamondonw.com>2016-12-09 12:25:53 -0500
commitcd0e5961d454e5861e2fd760388eb6920a1e2257 (patch)
treece7a206ba9992dfa07f78db46828e0f17f32f96d /src/TrainerMod
parent25d2eb477729e929f3534b6f828c3fd96632e107 (diff)
downloadSMAPI-cd0e5961d454e5861e2fd760388eb6920a1e2257.tar.gz
SMAPI-cd0e5961d454e5861e2fd760388eb6920a1e2257.tar.bz2
SMAPI-cd0e5961d454e5861e2fd760388eb6920a1e2257.zip
add reflection API for mods (#185)
Diffstat (limited to 'src/TrainerMod')
-rw-r--r--src/TrainerMod/TrainerMod.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/TrainerMod/TrainerMod.cs b/src/TrainerMod/TrainerMod.cs
index 9572c494..f0c7549f 100644
--- a/src/TrainerMod/TrainerMod.cs
+++ b/src/TrainerMod/TrainerMod.cs
@@ -40,7 +40,7 @@ namespace TrainerMod
** Public methods
*********/
/// <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>
+ /// <param name="helper">Provides simplified APIs for writing mods.</param>
public override void Entry(IModHelper helper)
{
this.RegisterCommands();
@@ -694,7 +694,7 @@ namespace TrainerMod
else
this.LogValueNotSpecified();
}
-
+
/****
** Helpers
****/