summaryrefslogtreecommitdiff
path: root/src/SMAPI/IModInfo.cs
blob: 3c85d454f47d1a814a1ceb294a9f546885ac0caf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace StardewModdingAPI
{
    /// <summary>Metadata for a loaded mod.</summary>
    public interface IModInfo
    {
        /// <summary>The mod manifest.</summary>
        IManifest Manifest { get; }

        /// <summary>Whether the mod is a content pack.</summary>
        bool IsContentPack { get; }
    }
}