namespace StardewModdingAPI { /// Metadata for a loaded mod. public interface IModInfo { /// The mod manifest. IManifest Manifest { get; } /// Whether the mod is a content pack. bool IsContentPack { get; } } }