namespace StardewModdingAPI { /// A mod dependency listed in a mod manifest. public interface IManifestDependency { /********* ** Accessors *********/ /// The unique mod ID to require. string UniqueID { get; } /// The minimum required version (if any). ISemanticVersion MinimumVersion { get; } #if !SMAPI_1_x /// Whether the dependency must be installed to use the mod. bool IsRequired { get; } #endif } }