From cd0e5961d454e5861e2fd760388eb6920a1e2257 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Fri, 9 Dec 2016 12:25:53 -0500 Subject: add reflection API for mods (#185) --- src/TrainerMod/TrainerMod.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/TrainerMod/TrainerMod.cs') 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 *********/ /// 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. + /// Provides simplified APIs for writing mods. public override void Entry(IModHelper helper) { this.RegisterCommands(); @@ -694,7 +694,7 @@ namespace TrainerMod else this.LogValueNotSpecified(); } - + /**** ** Helpers ****/ -- cgit