diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-03-21 23:12:26 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-09-14 17:00:55 -0400 |
commit | 332bcfa5a19509352aa417a04a677b5701c16986 (patch) | |
tree | 301a9f3e769d3b6e31434dae15161d120a65e825 /src/SMAPI/IContentPack.cs | |
parent | dc0556ff5feead4ced16b82f407b6b271cbb3d30 (diff) | |
download | SMAPI-332bcfa5a19509352aa417a04a677b5701c16986.tar.gz SMAPI-332bcfa5a19509352aa417a04a677b5701c16986.tar.bz2 SMAPI-332bcfa5a19509352aa417a04a677b5701c16986.zip |
add content pack translations
Diffstat (limited to 'src/SMAPI/IContentPack.cs')
-rw-r--r-- | src/SMAPI/IContentPack.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/SMAPI/IContentPack.cs b/src/SMAPI/IContentPack.cs index 32cbc6fc..7085c538 100644 --- a/src/SMAPI/IContentPack.cs +++ b/src/SMAPI/IContentPack.cs @@ -17,6 +17,9 @@ namespace StardewModdingAPI /// <summary>The content pack's manifest.</summary> IManifest Manifest { get; } + /// <summary>Provides translations stored in the content pack's <c>i18n</c> folder. See <see cref="IModHelper.Translation"/> for more info.</summary> + ITranslationHelper Translation { get; } + /********* ** Public methods |