diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-03-22 20:46:21 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-03-22 20:46:21 -0400 |
commit | d3fbdf484a4d90365a55fb5058d75a8623f17d0f (patch) | |
tree | c4ada80c72916195398b315457c7310f0ed6dc8f /src/SMAPI/Mod.cs | |
parent | a42926868ae5878ed59d6406ca085b587299ba07 (diff) | |
download | SMAPI-d3fbdf484a4d90365a55fb5058d75a8623f17d0f.tar.gz SMAPI-d3fbdf484a4d90365a55fb5058d75a8623f17d0f.tar.bz2 SMAPI-d3fbdf484a4d90365a55fb5058d75a8623f17d0f.zip |
reduce duplicated doc blocks
Diffstat (limited to 'src/SMAPI/Mod.cs')
-rw-r--r-- | src/SMAPI/Mod.cs | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/SMAPI/Mod.cs b/src/SMAPI/Mod.cs index 0e5be1c1..9af55cd4 100644 --- a/src/SMAPI/Mod.cs +++ b/src/SMAPI/Mod.cs @@ -8,25 +8,27 @@ namespace StardewModdingAPI /********* ** Accessors *********/ - /// <summary>Provides simplified APIs for writing mods.</summary> + /// <inheritdoc /> public IModHelper Helper { get; internal set; } - /// <summary>Writes messages to the console and log file.</summary> + /// <inheritdoc /> public IMonitor Monitor { get; internal set; } - /// <summary>The mod's manifest.</summary> + /// <inheritdoc /> public IManifest ModManifest { get; internal set; } /********* ** Public methods *********/ - /// <summary>The mod entry point, called after the mod is first loaded.</summary> - /// <param name="helper">Provides simplified APIs for writing mods.</param> + /// <inheritdoc /> public abstract void Entry(IModHelper helper); - /// <summary>Get an API that other mods can access. This is always called after <see cref="Entry"/>.</summary> - public virtual object GetApi() => null; + /// <inheritdoc /> + public virtual object GetApi() + { + return null; + } /// <summary>Release or reset unmanaged resources.</summary> public void Dispose() |