summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI/IContentHelper.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/StardewModdingAPI/IContentHelper.cs')
-rw-r--r--src/StardewModdingAPI/IContentHelper.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/StardewModdingAPI/IContentHelper.cs b/src/StardewModdingAPI/IContentHelper.cs
index f32c1d18..b4557134 100644
--- a/src/StardewModdingAPI/IContentHelper.cs
+++ b/src/StardewModdingAPI/IContentHelper.cs
@@ -2,6 +2,7 @@
using System.Collections.Generic;
using Microsoft.Xna.Framework.Content;
using Microsoft.Xna.Framework.Graphics;
+using StardewValley;
namespace StardewModdingAPI
{
@@ -19,6 +20,12 @@ namespace StardewModdingAPI
IList<IAssetEditor> AssetEditors { get; }
#endif
+ /// <summary>The game's current locale code (like <c>pt-BR</c>).</summary>
+ string CurrentLocale { get; }
+
+ /// <summary>The game's current locale as an enum value.</summary>
+ LocalizedContentManager.LanguageCode CurrentLocaleConstant { get; }
+
/*********
** Public methods