summaryrefslogtreecommitdiff
path: root/src/SMAPI/IMod.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-10-08 20:33:01 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-10-08 20:33:01 -0400
commit8d6670cfc8abf7e71197d2f621314fb04a0543b8 (patch)
tree73594cd0fe3dd7ee137dd7e538d8eaa218601b35 /src/SMAPI/IMod.cs
parenta565ac9405a95d24f7cf945228935107e91bb89f (diff)
downloadSMAPI-8d6670cfc8abf7e71197d2f621314fb04a0543b8.tar.gz
SMAPI-8d6670cfc8abf7e71197d2f621314fb04a0543b8.tar.bz2
SMAPI-8d6670cfc8abf7e71197d2f621314fb04a0543b8.zip
pass mod info to GetApi instead
Diffstat (limited to 'src/SMAPI/IMod.cs')
-rw-r--r--src/SMAPI/IMod.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/SMAPI/IMod.cs b/src/SMAPI/IMod.cs
index 4576246a..19d01311 100644
--- a/src/SMAPI/IMod.cs
+++ b/src/SMAPI/IMod.cs
@@ -24,14 +24,14 @@ namespace StardewModdingAPI
void Entry(IModHelper helper);
/// <summary>Get an <a href="https://stardewvalleywiki.com/Modding:Modder_Guide/APIs/Integrations">API that other mods can access</a>. This is always called after <see cref="Entry"/>, and is only called once even if multiple mods access it.</summary>
- /// <remarks>You can implement <see cref="GetApi()"/> to provide one instance to all mods, or <see cref="GetApi(IManifest)"/> to provide a separate instance per mod. These are mutually exclusive, so you can only implement one of them.</remarks>
+ /// <remarks>You can implement <see cref="GetApi()"/> to provide one instance to all mods, or <see cref="GetApi(IModInfo)"/> to provide a separate instance per mod. These are mutually exclusive, so you can only implement one of them.</remarks>
/// <remarks>Returns the API instance, or <c>null</c> if the mod has no API.</remarks>
object? GetApi();
/// <summary>Get an <a href="https://stardewvalleywiki.com/Modding:Modder_Guide/APIs/Integrations">API that other mods can access</a>. This is always called after <see cref="Entry"/>, and is called once per mod that accesses the API (even if they access it multiple times).</summary>
- /// <param name="manifest">The manifest for the mod accessing the API.</param>
+ /// <param name="mod">The mod accessing the API.</param>
/// <remarks>Returns the API instance, or <c>null</c> if the mod has no API. Note that the manifest is provided for informational purposes only, and that denying API access to specific mods is strongly discouraged and may be considered abusive.</remarks>
/// <inheritdoc cref="GetApi()" include="/Remarks" />
- object? GetApi(IManifest manifest);
+ object? GetApi(IModInfo mod);
}
}