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