From fd925e9a8c13d31980d934195ea9cc81acaf970a Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Wed, 22 Aug 2018 23:07:48 -0400 Subject: let mods access mod.IsContentPack property (#534) --- src/SMAPI/IModInfo.cs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/SMAPI/IModInfo.cs') diff --git a/src/SMAPI/IModInfo.cs b/src/SMAPI/IModInfo.cs index a16c2d7b..3c85d454 100644 --- a/src/SMAPI/IModInfo.cs +++ b/src/SMAPI/IModInfo.cs @@ -5,5 +5,8 @@ namespace StardewModdingAPI { /// The mod manifest. IManifest Manifest { get; } + + /// Whether the mod is a content pack. + bool IsContentPack { get; } } } -- cgit