summaryrefslogtreecommitdiff
path: root/src/SMAPI/IModInfo.cs
blob: 2788e4fcddf69a94288551517c485e5bd62e1a91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#nullable disable

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; }
    }
}