diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-04-06 22:46:19 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-04-06 22:46:19 -0400 |
commit | b4e979cc991a0c2a45ad986210108edd2d43e43d (patch) | |
tree | 6894e1f3e965680b5feb6516457e898647d7e9aa /src/SMAPI/Framework/ContentManagers | |
parent | 2e7c233f6c9bf6430672b39f970a3324deba79dd (diff) | |
download | SMAPI-b4e979cc991a0c2a45ad986210108edd2d43e43d.tar.gz SMAPI-b4e979cc991a0c2a45ad986210108edd2d43e43d.tar.bz2 SMAPI-b4e979cc991a0c2a45ad986210108edd2d43e43d.zip |
fix all warnings to simplify migration to nullable annotations (#837)
Diffstat (limited to 'src/SMAPI/Framework/ContentManagers')
-rw-r--r-- | src/SMAPI/Framework/ContentManagers/IContentManager.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/SMAPI/Framework/ContentManagers/IContentManager.cs b/src/SMAPI/Framework/ContentManagers/IContentManager.cs index c4625761..c8b2ae64 100644 --- a/src/SMAPI/Framework/ContentManagers/IContentManager.cs +++ b/src/SMAPI/Framework/ContentManagers/IContentManager.cs @@ -38,6 +38,7 @@ namespace StardewModdingAPI.Framework.ContentManagers /// <summary>Load an asset through the content pipeline, using a localized variant of the <paramref name="assetName"/> if available.</summary> /// <typeparam name="T">The type of asset to load.</typeparam> /// <param name="assetName">The asset name relative to the loader root directory.</param> + /// <param name="language">The language for which to load the asset.</param> /// <param name="useCache">Whether to read/write the loaded asset to the asset cache.</param> T LoadLocalized<T>(IAssetName assetName, LocalizedContentManager.LanguageCode language, bool useCache); |